|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.numericalmethod.suanshu.stats.timeseries.linear.univariate.arima.ARIMAXModel
com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arma.ARMAXModel
public class ARMAXModel
The ARMAX model (ARIMA model with eXogenous inputs) is a generalization of the ARMA model by incorporating exogenous variables. Xt is an ARMAX(p, q) process, for which \[ X_t = \mu + \sum_{i=1}^p \phi_i X_{t-i} + \sum_{i=1}^q \theta_j \epsilon_{t-j} + \psi' D_t + \epsilon_t, \] where Dt is an (m * 1) vector which contains all exogenous variables at time t (excluding the intercept term), and its coefficients are represented by an m-dimensional vector ψ.
| Constructor Summary | |
|---|---|
ARMAXModel(ARMAXModel that)
Copy constructor. |
|
ARMAXModel(double[] AR,
double[] MA,
double[] psi)
Construct a univariate ARMAX model with unit variance and zero-intercept (mu). |
|
ARMAXModel(double[] AR,
double[] MA,
double[] psi,
double sigma)
Construct a univariate ARMAX model with zero-intercept (mu). |
|
ARMAXModel(double mu,
double[] AR,
double[] MA,
double[] psi)
Construct a univariate ARMAX model with unit variance. |
|
ARMAXModel(double mu,
double[] AR,
double[] MA,
double[] psi,
double sigma)
Construct a univariate ARMAX model. |
|
| Method Summary | |
|---|---|
double |
armaxMean(double[] arLags,
double[] maLags,
double[] exVar)
Compute the univariate ARMAX conditional mean. |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.arima.ARIMAXModel |
|---|
AR, d, getARMAX, MA, maxPQ, mu, p, phi, phiPolynomial, psi, q, sigma, theta, thetaPolynomial, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public ARMAXModel(double mu,
double[] AR,
double[] MA,
double[] psi,
double sigma)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1); null if no AR coefficientsMA - the MA coefficients (excluding the initial 1); null if no MA coefficientspsi - the coefficients of the deterministic terms (excluding the intercept term)sigma - the white noise variance
public ARMAXModel(double mu,
double[] AR,
double[] MA,
double[] psi)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1); null if no AR coefficientsMA - the MA coefficients (excluding the initial 1); null if no MA coefficientspsi - the coefficients of the deterministic terms (excluding the intercept term)
public ARMAXModel(double[] AR,
double[] MA,
double[] psi,
double sigma)
AR - the AR coefficients (excluding the initial 1); null if no AR coefficientsMA - the MA coefficients (excluding the initial 1); null if no MA coefficientspsi - the coefficients of the deterministic terms (excluding the intercept term)sigma - the white noise variance
public ARMAXModel(double[] AR,
double[] MA,
double[] psi)
AR - the AR coefficients (excluding the initial 1); null if no AR coefficientsMA - the MA coefficients (excluding the initial 1); null if no MA coefficientspsi - the coefficients of the deterministic terms (excluding the intercept term)public ARMAXModel(ARMAXModel that)
that - a univariate ARMAX model| Method Detail |
|---|
public double armaxMean(double[] arLags,
double[] maLags,
double[] exVar)
arLags - the AR lagsmaLags - the MA lagsexVar - the exogenous variables
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||