回想一下,AR(p) 过程可以定义为
在哪里是 IID 白噪声。我想编写一个模拟这些过程的算法,但我不确定我是否采用了正确的方法。这是我的想法:
INPUT:
n = length of time series
[\phi_1,...,\phi_p] the parameters of the process
1. Construct a white noise vector Z of length n + p
2. Have the first rolling sum of the X_i's be set as the noise
3. Construct the rest of the time series from there
在这种情况下
另一种选择是从构建开始通过将递归方程中的低阶项设置为 0。因此,对于前几个
哪种方法是构建模拟的“正确”方法?