|
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.arma.Vecm
public class Vecm
This class represents a Vector Error Correction Model (VECM).
A vector error correction model (VECM(p)) has one the following specifications:
(Transitory):
ΔY_t = μ + Π * Y_{t-1} + Σ[Γ_i * Y_{t-i}] + ψ * D_t + ε_t, (i = 1, 2, ..., p-1),
or
(Long-run):
ΔY_t = μ + Π * Y_{t-p} + Σ[Γ_i * Y_{t-i}] + ψ * D_t + ε_t, (i = 1, 2, ..., p-1),
where Y_s, μ and ε_s are n-dimensional vectors;
the impact matrix Π and the coefficients {Γ_i} of the lagged time series are (n * n) matrices;
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 Summary | |
|---|---|
Vecm(Vecm that)
Copy constructor. |
|
Vecm(Vector mu,
Matrix pi,
Matrix[] gamma,
Matrix psi,
Matrix sigma)
Construct a VECM(p) model. |
|
| Method Summary | |
|---|---|
int |
dimension()
Get the dimension of multivariate time series. |
ImmutableMatrix |
gamma(int i)
Get the AR coefficient on the i-th lagged differences. |
ImmutableVector |
mu()
Get the intercept vector. |
int |
p()
Get the order of the VECM model. |
ImmutableMatrix |
pi()
Get the impact matrix. |
ImmutableMatrix |
psi()
Get the coefficients of the deterministic terms. |
ImmutableMatrix |
sigma()
Get the covariance matrix of white noise. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Vecm(Vector mu,
Matrix pi,
Matrix[] gamma,
Matrix psi,
Matrix sigma)
mu - the intercept (constant) vectorpi - the impact matrixgamma - the AR coefficients on the lagged differences; null if p = 1psi - the coefficients of the deterministic terms (excluding the intercept term)sigma - the covariance matrix of white noisepublic Vecm(Vecm that)
that - a VECM model| Method Detail |
|---|
public ImmutableVector mu()
public ImmutableMatrix pi()
public ImmutableMatrix gamma(int i)
i - an index, count from 1
public ImmutableMatrix psi()
nullpublic ImmutableMatrix sigma()
public int dimension()
public int p()
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||