Create Autoregressive Integrated Moving Average (ARIMA) Models
These examples show how to create various autoregressive integrated moving
average (ARIMA) models by using the arima function. For an overview on conditional mean model creation, see
Represent Univariate Dynamic Conditional Mean Models in MATLAB.
Default ARIMA Model
This example shows how to use the shorthand arima(p,D,q) syntax to specify the default ARIMA(p, D, q) model,
where is a differenced time series. You can write this model in condensed form using lag operator notation:
By default, all parameters in the created model object have unknown values, and the innovation distribution is Gaussian with constant variance.
Specify the default ARIMA(1,1,1) model:
Mdl = arima(1,1,1)
Mdl =
arima with properties:
Description: "ARIMA(1,1,1) Model (Gaussian Distribution)"
SeriesName: "Y"
Distribution: Name = "Gaussian"
P: 2
D: 1
Q: 1
Constant: NaN
AR: {NaN} at lag [1]
SAR: {}
MA: {NaN} at lag [1]
SMA: {}
Seasonality: 0
Beta: [1×0]
Variance: NaN
The output shows that the created model object, Mdl, has NaN values for all model parameters: the constant term, the AR and MA coefficients, and the variance. You can modify the created model using dot notation, or input it (along with data) to estimate.
The property P has value 2 (p + D). This is the number of presample observations needed to initialize the AR model.
ARIMA Model with Known Parameter Values
This example shows how to specify an ARIMA(p, D, q) model with known parameter values. You can use such a fully specified model as an input to simulate or forecast.
Specify the ARIMA(2,1,1) model
where the innovation distribution is Student's t with 10 degrees of freedom, and constant variance 0.15.
tdist = struct('Name','t','DoF',10); Mdl = arima('Constant',0.4,'AR',{0.8,-0.3},'MA',0.5,... 'D',1,'Distribution',tdist,'Variance',0.15)
Mdl =
arima with properties:
Description: "ARIMA(2,1,1) Model (t Distribution)"
SeriesName: "Y"
Distribution: Name = "t", DoF = 10
P: 3
D: 1
Q: 1
Constant: 0.4
AR: {0.8 -0.3} at lags [1 2]
SAR: {}
MA: {0.5} at lag [1]
SMA: {}
Seasonality: 0
Beta: [1×0]
Variance: 0.15
The name-value pair argument D specifies the degree of nonseasonal integration (D).
All parameter values are specified, that is, no object property is NaN-valued.
Specify ARIMA Model Using Econometric Modeler App
In the Econometric Modeler app, you can specify the lag structure, presence of a constant, and innovation distribution of an ARIMA(p,D,q) model by following these steps. All specified coefficients are unknown but estimable parameters.
At the command line, open the Econometric Modeler app.
econometricModeler
Alternatively, open the app from the apps gallery (see Econometric Modeler).
In the Time Series pane, select the response time series to which the model will be fit.
On the Modeler tab, in the Models section, click ARIMA. To create ARIMAX models, see Create ARIMA Models That Include Exogenous Covariates.
The ARIMA Model Parameters dialog box appears.

Specify the lag structure. To specify an ARIMA(p,D,q) model that includes all AR lags from 1 through p and all MA lags from 1 through q, use the Lag Order tab. For the flexibility to specify the inclusion of particular lags, use the Lag Vector tab. For more details, see Specifying Univariate Lag Operator Polynomials Interactively. Regardless of the tab you use, you can verify the model form by inspecting the equation in the Model Equation section.
For example:
To specify an ARIMA(3,1,2) model that includes a constant, includes all consecutive AR and MA lags from 1 through their respective orders, and has a Gaussian innovation distribution:
Set Degree of Integration (D) to
1.Set Autoregressive Order (p) to
3.Set Moving Average Order (q) to
2.
To specify an ARIMA(3,1,2) model that includes all AR and MA lags from 1 through their respective orders, has a Gaussian distribution, but does not include a constant:
Set Degree of Integration (D) to
1.Set Autoregressive Order (p) to
3.Set Moving Average Order (q) to
2.Clear the Include Constant Term check box.
To specify an ARIMA(8,1,4) model containing nonconsecutive lags
where εt is a series of iid Gaussian innovations:
Click the Lag Vector tab.
Set Degree of Integration to
1.Set Autoregressive Lags to
1 4 8.Set Moving Average Lags to
1 4.Clear the Include Constant Term check box.

To specify an ARIMA(3,1,2) model that includes all consecutive AR and MA lags through their respective orders and a constant term, and has t-distribution innovations:
Set Degree of Integration (D) to
1.Set Autoregressive Order (p) to
3.Set Moving Average Order (q) to
2.Click the Innovation Distribution button, then select
Student's t.
The degrees of freedom parameter of the t distribution is an unknown but estimable parameter.
After you specify a model, click Estimate to estimate all unknown parameters in the model.
What Are Autoregressive Integrated Moving Average (ARIMA) Models?
The autoregressive integrated moving average (ARIMA) process is a nonstationary series that is integrated of order D, denoted I(D). A nonstationary I(D) process is one that can be made stationary by taking D differences. Such processes are often called difference-stationary or unit root processes. A series that you can model as a stationary ARMA(p,q) process after being backward-differenced D times is denoted by ARIMA(p,D,q).
An ARIMA(p,D,q) model is expressed in the following two forms. For details on the connections between the parameters and software, see ARIMA Model Parameters and Corresponding Object Properties.
Difference equation notation: .
ϕj is the lag j AR coefficient, for j = 1 through p.
θk is the lag k MA coefficient, for k = 1 through q.
is the series produced by applying the order D backward difference operator to yt.
Lag operator polynomial notation: .
is an unstable AR lag operator polynomial with exactly D unit roots. can be factored into the polynomial , where ϕ(L) is the degree p stable, nonseasonal AR lag operator polynomial .
(1 – L)D is the order D nonseasonal backward difference operator.
θ(L) is the degree q invertible, nonseasonal MA lag operator polynomial .
In the equations, εt is an uncorrelated innovation process with mean zero.
Note
In the original Box-Jenkins methodology, you difference an integrated series until it is stationary before modeling. Then, you model the differenced series as a stationary ARMA(p,q) process [1]. Econometrics Toolbox™ fits and forecasts ARIMA(p,D,q) processes directly, so you do not need to difference data before modeling (or backtransform forecasts).
References
[1] Box, George E. P., Gwilym M. Jenkins, and Gregory C. Reinsel. Time Series Analysis: Forecasting and Control. 3rd ed. Englewood Cliffs, NJ: Prentice Hall, 1994.
See Also
Apps
Objects
Functions
Topics
- Analyze Time Series Data Using Econometric Modeler
- Represent Univariate Dynamic Conditional Mean Models in MATLAB
- Specifying Univariate Lag Operator Polynomials Interactively
- Modify Properties of Conditional Mean Model Objects
- Specify Conditional Mean Model Innovation Distribution
- Nonseasonal Differencing
- Trend-Stationary vs. Difference-Stationary Processes
- Lag Operator Notation