public class ARMAXModel extends ARIMAXModel
The multivariate ARMAX model incorporates exogenous variables and it can be considered as a generalization of the multivariate ARMA model. Let Y_t be a multivariate ARMAX process, then
Y_t = μ + Σ φ_i * Y_{t-i} + Σ θ_j * ε_{t-j} + ψ * D_t + ε_t.
In the equation above, Y_s, μ and ε_s are n-dimensional vectors;
(n * n) matrices {φ_i} and {θ_j} are the AR and MA coefficients, respectively;
D_t is an (m * 1) vector which contains all exogenous variables at time t (excl. the intercept term),
and its coefficients are represented by a (n * m) matrix ψ.| Constructor and Description |
|---|
ARMAXModel(ARMAXModel that)
Copy constructor.
|
ARMAXModel(ARMAXModel model)
Cast a univariate ARMAX model to a multivariate model.
|
ARMAXModel(Matrix[] phi,
Matrix[] theta,
Matrix psi)
Construct a zero-intercept (mu) multivariate ARMAX model with unit variance.
|
ARMAXModel(Matrix[] phi,
Matrix[] theta,
Matrix psi,
Matrix sigma)
Construct a zero-intercept (mu) multivariate ARMAX model.
|
ARMAXModel(Vector mu,
Matrix[] phi,
Matrix[] theta,
Matrix psi)
Construct a multivariate ARMAX model with unit variance.
|
ARMAXModel(Vector mu,
Matrix[] phi,
Matrix[] theta,
Matrix psi,
Matrix sigma)
Construct a multivariate ARMAX (ARMA model with eXogenous inputs) model.
|
| Modifier and Type | Method and Description |
|---|---|
Matrix |
armaxMean(Matrix arLags,
Matrix maLags,
Vector exVar)
Compute the multivariate ARMAX conditional mean.
|
Matrix |
armaxMeanNoIntercept(Matrix arLags,
Matrix maLags,
Vector exVar)
Compute the zero-intercept (mu) multivariate ARMAX conditional mean.
|
public ARMAXModel(Vector mu, Matrix[] phi, Matrix[] theta, Matrix psi, Matrix sigma)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficientpsi - the coefficients of the deterministic terms (excluding the intercept term)sigma - the covariance matrix of white noisepublic ARMAXModel(Vector mu, Matrix[] phi, Matrix[] theta, Matrix psi)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficientpsi - the coefficients of the deterministic terms (excluding the intercept term)public ARMAXModel(Matrix[] phi, Matrix[] theta, Matrix psi, Matrix sigma)
phi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficientpsi - the coefficients of the deterministic terms (excluding the intercept term)sigma - the covariance matrix of white noisepublic ARMAXModel(Matrix[] phi, Matrix[] theta, Matrix psi)
phi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficientpsi - the coefficients of the deterministic terms (excluding the intercept term)public ARMAXModel(ARMAXModel that)
that - a multivariate ARMAX modelpublic ARMAXModel(ARMAXModel model)
model - a univariate ARIMA model