|
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
com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.VecmLongrun
public class VecmLongrun
This class represents a long-run Vector Error Correction Model (VECM).
A long-run vector error correction model (VECM(p)) has the following specification:
Δ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 ψ.
This class also provides a conversion method between a long-run VECM(p) and a VARX(p) model.
| Constructor Summary | |
|---|---|
VecmLongrun(Matrix pi,
Matrix[] gamma,
Matrix psi,
Matrix sigma)
Construct a zero-intercept (mu) long-run VECM(p) model. |
|
VecmLongrun(VarxModel varx)
Construct a long-run VECM(p) from a VARX(p). |
|
VecmLongrun(VecmLongrun that)
Copy constructor. |
|
VecmLongrun(Vector mu,
Matrix pi,
Matrix[] gamma,
Matrix psi,
Matrix sigma)
Construct a long-run VECM(p) model. |
|
| Method Summary |
|---|
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.Vecm |
|---|
dimension, gamma, mu, p, pi, psi, sigma |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public VecmLongrun(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 noise
public VecmLongrun(Matrix pi,
Matrix[] gamma,
Matrix psi,
Matrix sigma)
pi - 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 VecmLongrun(VarxModel varx)
varx - a VARX modelpublic VecmLongrun(VecmLongrun that)
that - a long-run VECM model
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||