|
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.multivariate.stationaryprocess.arima.ArimaxModel
com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.ArmaxModel
com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.VarxModel
public class VarxModel
This class represents a VARX (VAR model with eXogenous inputs) model.
The VARX (Vector AutoRegressive model with eXogeneous inputs) process Y_t has the following specification:
Y_t = μ + Σ φ_i * Y_{t-i} + ψ * D_t + ε_t,
where Y_s, μ and ε_s are n-dimensional vectors;
(n * n) matrices {φ_i} (i = 1, 2, ..., p) denote the AR coefficients;
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 ψ.
This class also provides conversion methods between a VARX(p) model and a VECM(p) (long-run or transitory).
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaxModel |
|---|
mu, phi, psi, sigma, theta |
| Constructor Summary | |
|---|---|
VarxModel(Matrix[] phi,
Matrix psi)
Construct a zero-mean VARX model with unit variance. |
|
VarxModel(Matrix[] phi,
Matrix psi,
Matrix sigma)
Construct a zero-mean VARX model. |
|
VarxModel(VarxModel that)
Copy constructor. |
|
VarxModel(VecmLongrun vecm)
Construct a VARX(p) from a long-run VECM(p). |
|
VarxModel(VecmTransitory vecm)
Construct a VARX(p) from a transitory VECM(p). |
|
VarxModel(Vector mu,
Matrix[] phi,
Matrix psi)
Construct a VARX model with unit variance. |
|
VarxModel(Vector mu,
Matrix[] phi,
Matrix psi,
Matrix sigma)
Construct a VARX model. |
|
| Method Summary |
|---|
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.ArmaxModel |
|---|
armaxMean, armaxMeanNoIntercept |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaxModel |
|---|
AR, AR, d, dimension, getArmax, MA, MA, maxPQ, mu, p, psi, q, sigma |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public VarxModel(Vector mu,
Matrix[] phi,
Matrix psi,
Matrix sigma)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1)psi - the coefficients of the deterministic terms (excluding the intercept term)sigma - the covariance matrix of white noise
public VarxModel(Vector mu,
Matrix[] phi,
Matrix psi)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1)psi - the coefficients of the deterministic terms (excluding the intercept term)
public VarxModel(Matrix[] phi,
Matrix psi,
Matrix sigma)
phi - the AR coefficients (excluding the initial 1)psi - the coefficients of the deterministic terms (excluding the intercept term)sigma - the covariance matrix of white noise
public VarxModel(Matrix[] phi,
Matrix psi)
phi - the AR coefficients (excluding the initial 1)psi - the coefficients of the deterministic terms (excluding the intercept term)public VarxModel(VecmTransitory vecm)
vecm - a transitory VECM(p)public VarxModel(VecmLongrun vecm)
vecm - a long-run VECM(p)public VarxModel(VarxModel that)
that - a VARX model
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||