ARIMA models and Box-jenkins function

9 views (last 30 days)
antonio tirri
antonio tirri on 4 Jan 2012
Hi, I have to forecast some value of a time series using an ARIMA(5,1,3) model.
I saw in Matlab there isn't a function for ARIMA models because ARIMA models are a type of Box-Jenkins models. But how to set parameters?
In the Box-Jenkins models
m = bj(data,[nb nc nd nf nk])
How to set nb, nc, nd, nf and nk in order to have an ARIMA(p,d,q) model?
Thanks

Answers (1)

Rajiv Singh
Rajiv Singh on 17 Mar 2012
In R2012a, use the ARMAX function with "IntegrateNoise" attribute specified using name-value pair. See ARMAX documentation for more info.
For example, model = armax(data, [na nc], 'IntegrateNoise', true) estimates an ARIMA model of time series "data".

Categories

Find more on Linear Model Identification in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!