AR(p) of order 6 AutoRegression
1 回表示 (過去 30 日間)
古いコメントを表示
I am trying to write the following formula in matlab for autoregression: Yt = PYt-1 +...+ PYt-6 + Et (Et = random error defined as (0,1)) I know my weighted P values and I want the formula to be for order of 6. I'm new to Matlab and do have econometrics toolbox but unsure of how to write this properly, any help much appreciated.
0 件のコメント
採用された回答
Shashank Prasanna
2014 年 3 月 20 日
編集済み: Shashank Prasanna
2014 年 3 月 20 日
mdl = arima('Constant',0.05,'AR',{0.1,0.2,0.3,0.4,-0.5,-0.6})
Assuming those are your PY values.
Please check the documentation for examples and other information:
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Conditional Mean Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!