Have a Question?
Phone: +1 (888) 427-9486
+1 (312) 324-0367
Fax: +1 (312) 238-9092
Contact Us
ARMA (Pro.)
Returns an array of cells for the packed form of the given ARMAi model.
Syntax
ARMA(mean, sigma, phi, theta)
mean
is the ARMA model 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).
Remarks
- The underlying model is described here.
- 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.
) should be greater than zero. - The ARMA function returns an array of size of p+q+5 in the following order:
-
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
