How to define some orders in ARIMA

1 回表示 (過去 30 日間)
Fred
Fred 2013 年 8 月 22 日
I want to define an ARIMA(1,0,8) but I only want the model to find the optimal values for first and last MA orders in a way that for MA component orders from 2 to 7 are zero.How should I change the following function?
model = arima(p,0,q);

採用された回答

Shashank Prasanna
Shashank Prasanna 2013 年 8 月 22 日
This should do the trick:
arima('ARLags',1,'MALags',[1 8])
ans =
ARIMA(1,0,8) Model:
--------------------
Distribution: Name = 'Gaussian'
P: 1
D: 0
Q: 8
Constant: NaN
AR: {NaN} at Lags [1]
SAR: {}
MA: {NaN NaN} at Lags [1 8] <--------
SMA: {}
Variance: NaN

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConditional Mean Models についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by