AIC for ARIMA

Hi all. I am modeling a time series with ARIMA model, and I have to test th AIC creterion to know wich is the best model. aic(model), but what to put in place of "model"?

댓글 수: 3

Wayne King
Wayne King 2012년 5월 2일
Please show some MATLAB code. Are you using the Econometrics Toolbox, or System Identification Toolobx?
Walter Roberson
Walter Roberson 2012년 5월 2일
http://www.mathworks.com/matlabcentral/answers/29922-why-your-question-is-not-urgent-or-an-emergency
Marina
Marina 2012년 5월 2일
I use ssytem identification toolbox

댓글을 달려면 로그인하십시오.

답변 (1개)

Rajiv Singh
Rajiv Singh 2012년 5월 3일

0 개 추천

In System Identification Toolbox, use the armax command to generate a model. Suppose x represents your time series data: z = iddata(x,[]); model = armax(z,[na nc], 'IntegrateNoise', true)
The "IntegrateNoise" option is available in R2012a, but not before that. In older releases, you can do something like this: zd = iddata(diff(x),[]); model = armax(zd,[na nc]) model.a = conv([1 -1],model.a)
rajiv

카테고리

도움말 센터File Exchange에서 Linear Model Identification에 대해 자세히 알아보기

질문:

2012년 5월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by