public class ARModel extends ARMAModel
| Constructor and Description |
|---|
ARModel(ARModel that)
Copy constructor.
|
ARModel(ARModel model)
Cast a univariate AR model to a multivariate model.
|
ARModel(Matrix[] phi)
Construct a zero-intercept (mu) VAR model with unit variance.
|
ARModel(Matrix[] phi,
Matrix sigma)
Construct a zero-intercept (mu) VAR model.
|
ARModel(Vector mu,
Matrix[] phi)
Construct a VAR model with unit variance.
|
ARModel(Vector mu,
Matrix[] phi,
Matrix sigma)
Construct a VAR model.
|
armaMean, armaMeanNoInterceptgetArmapublic ARModel(Vector mu, Matrix[] phi, Matrix sigma)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1)sigma - the covariance matrix of white noisepublic ARModel(Vector mu, Matrix[] phi)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1)public ARModel(Matrix[] phi, Matrix sigma)
phi - the AR coefficients (excluding the initial 1)sigma - the covariance matrix of white noisepublic ARModel(Matrix[] phi)
phi - the AR coefficients (excluding the initial 1)public ARModel(ARModel that)
that - a VAR modelpublic ARModel(ARModel model)
model - a univariate AR model