Have a Question?
Phone: +1 (888) 427-9486
+1 (312) 324-0367
Fax: +1 (312) 238-9092
Contact Us
ARMAX (Pro.)
Returns an array of cells for the packed form of a given ARMAX model.
Syntax
ARMAX(mean, sigma, phi, theta, Beta)
mean
is the ARMA mean (i.e. mu).
sigma
is the standard deviation of the model's residuals.
phi
are the parameters of the AR(p) component model (starting with the lowest lag).
theta
are the parameters of the MA(q) component model (starting with the lowest lag).
Beta
are the coefficients array of the exogenous factors.
Remarks
- The time series is homogeneous or equally spaced.
-
The ARMAX model is written as:
![\[ X_t = \mu + \sum_{i=1}^p \phi_i X_{t-i} + \sum_{j=1}^q \theta_j a_{t-j} +\sum_{k=1}^N{\beta_k X_t^{(k)}} + a_t \]](/sites/all/files/tex/f69d3e71ec47522e969a49c4ab2a2f1ac9107132.png)
Where:
-
is the value of the time series at time t.
-
is the model mean.
-
is the order of the autoregressive (AR) component model.
-
are the AR(p) model parameters.
-
is the order of the moving-average (MA) component model.
-
are the MA(q) model parameters.
-
are the coefficients for the exogenous factors.
-
is the value of the k-th exogenous factor at time t.
-
is the model's residual/innovation at time t.
![$ \left[a_t\right] \sim i.i.d $](/sites/all/files/tex/2d0c130b8a38808b3fc149a1924e3da9de8babe1.png)
-
- The number of parameters in the input argument - phi - determines the order of the AR component.
- The number of parameters in the input argument - theta - determines the order of the MA component.
- The residuals/innovations standard deviation (i.e. sigma) should be greater than zero for stable ARMA model .
-
The ARMAX function returns an array of size
:
-
References
- Hamilton, J .D.; Time Series Analysis
, Princeton University Press (1994), ISBN 0-691-04289-6 - Tsay, Ruey S.; Analysis of Financial Time Series
John Wiley & SONS. (2005), ISBN 0-471-690740
