How can I specify a Seasonal ARIMA model in MATLAB

2 views (last 30 days)
Hi
I need to specify ARIMA(1,0,1)(0,1,1)12 in MATLAB. I write the following code. ............................................................................................................
Mdl1 = arima('ARLags',1,'MALags',2,'SMALags',1,'Seasonality',12); mdl = estimate(Mdl1,x); yF1 = forecast(mdl,60); ............................................................................................................

Answers (0)

Categories

Find more on Conditional Mean Models 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!