public class ARIMAModel extends ARIMAXModel
| Constructor and Description |
|---|
ARIMAModel(ARIMAModel that)
Copy constructor.
|
ARIMAModel(ARIMAModel model)
Cast a univariate ARIMA model to a multivariate model.
|
ARIMAModel(Matrix[] phi,
int d,
Matrix[] theta)
Construct a zero-intercept (mu) multivariate ARIMA model with unit variance.
|
ARIMAModel(Matrix[] phi,
int d,
Matrix[] theta,
Matrix sigma)
Construct a zero-intercept (mu) multivariate ARIMA model.
|
ARIMAModel(Vector mu,
Matrix[] phi,
int d,
Matrix[] theta)
Construct a multivariate ARIMA model with unit variance.
|
ARIMAModel(Vector mu,
Matrix[] phi,
int d,
Matrix[] theta,
Matrix sigma)
Construct a multivariate ARIMA model.
|
| Modifier and Type | Method and Description |
|---|---|
ARMAModel |
getArma()
Get the ARMA specification of this ARIMA model, essentially ignoring the differencing.
|
public ARIMAModel(Vector mu, Matrix[] phi, int d, Matrix[] theta, Matrix sigma)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1); null if no AR coefficientd - the order of integrationtheta - the MA coefficients (excluding the initial 1); null if no MA coefficientsigma - the covariance matrix of white noisepublic ARIMAModel(Vector mu, Matrix[] phi, int d, Matrix[] theta)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1); null if no AR coefficientd - the order of integrationtheta - the MA coefficients (excluding the initial 1); null if no MA coefficientpublic ARIMAModel(Matrix[] phi, int d, Matrix[] theta, Matrix sigma)
phi - the AR coefficients (excluding the initial 1); null if no AR coefficientd - the order of integrationtheta - the MA coefficients (excluding the initial 1); null if no MA coefficientsigma - the covariance matrix of white noisepublic ARIMAModel(Matrix[] phi, int d, Matrix[] theta)
phi - the AR coefficients (excluding the initial 1); null if no AR coefficientd - the order of integrationtheta - the MA coefficients (excluding the initial 1); null if no MA coefficientpublic ARIMAModel(ARIMAModel that)
that - a multivariate ARIMA modelpublic ARIMAModel(ARIMAModel model)
model - a univariate ARIMA modelpublic ARMAModel getArma()