public class MAModel extends ARMAModel
| Constructor and Description |
|---|
MAModel(MAModel that)
Copy constructor.
|
MAModel(MAModel model)
Cast a univariate MA model to a multivariate model.
|
MAModel(Matrix[] theta)
Construct a zero-mean multivariate MA model with unit variance.
|
MAModel(Matrix[] theta,
Matrix sigma)
Construct a zero-mean multivariate MA model.
|
MAModel(Vector mu,
Matrix[] theta)
Construct a multivariate MA model with unit variance.
|
MAModel(Vector mu,
Matrix[] theta,
Matrix sigma)
Construct a multivariate MA model.
|
armaMean, armaMeanNoInterceptgetArmapublic MAModel(Vector mu, Matrix[] theta, Matrix sigma)
mu - the intercept (constant) vectortheta - the MA coefficients (excluding the initial 1); null if no MA coefficientssigma - the covariance matrix of white noisepublic MAModel(Vector mu, Matrix[] theta)
mu - the intercept (constant) vectortheta - the MA coefficients (excluding the initial 1); null if no MA coefficientspublic MAModel(Matrix[] theta, Matrix sigma)
theta - the MA coefficients (excluding the initial 1); null if no MA coefficientssigma - the covariance matrix of white noisepublic MAModel(Matrix[] theta)
theta - the MA coefficients (excluding the initial 1); null if no MA coefficientspublic MAModel(MAModel that)
that - a multivariate MA modelpublic MAModel(MAModel model)
model - a univariate MA model