public class VECMLongrun extends 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 and Description |
|---|
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.
|
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 noisepublic 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