|
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.ArimaxModel
com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaModel
com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.ArmaModel
com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.MaModel
public class MaModel
This class represents a multivariate MA model.
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaxModel |
|---|
mu, phi, psi, sigma, theta |
| Constructor Summary | |
|---|---|
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. |
|
| Method Summary |
|---|
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.arma.ArmaModel |
|---|
armaMean, armaMeanNoIntercept |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaModel |
|---|
getArma |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaxModel |
|---|
AR, AR, d, dimension, getArmax, MA, MA, maxPQ, mu, p, psi, q, sigma |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public 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 noise
public MaModel(Vector mu,
Matrix[] theta)
mu - the intercept (constant) vectortheta - the MA coefficients (excluding the initial 1); null if no MA coefficients
public 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
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||