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 comentarios

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

Iniciar sesión para comentar.

Respuestas (1)

Rajiv Singh
Rajiv Singh el 3 de Mayo de 2012

0 votos

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

Categorías

Etiquetas

Preguntada:

el 2 de Mayo de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by