|
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
public class ArmaModel
This class represents a multivariate ARMA model.
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaxModel |
|---|
mu, phi, psi, sigma, theta |
| Constructor Summary | |
|---|---|
ArmaModel(ArmaModel that)
Copy constructor. |
|
ArmaModel(ArmaModel model)
Cast a univariate ARMA model to a multivariate model. |
|
ArmaModel(Matrix[] phi,
Matrix[] theta)
Construct a zero-intercept (mu) multivariate ARMA model with unit variance. |
|
ArmaModel(Matrix[] phi,
Matrix[] theta,
Matrix sigma)
Construct a zero-intercept (mu) multivariate ARMA model. |
|
ArmaModel(Vector mu,
Matrix[] phi,
Matrix[] theta)
Construct a multivariate ARMA model with unit variance. |
|
ArmaModel(Vector mu,
Matrix[] phi,
Matrix[] theta,
Matrix sigma)
Construct a multivariate ARMA model. |
|
| Method Summary | |
|---|---|
Matrix |
armaMean(Matrix arLags,
Matrix maLags)
Compute the multivariate ARMA conditional mean. |
Matrix |
armaMeanNoIntercept(Matrix arLags,
Matrix maLags)
Compute the zero-intercept (mu) multivariate ARMA conditional mean. |
| 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 ArmaModel(Vector mu,
Matrix[] phi,
Matrix[] theta,
Matrix sigma)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficientsigma - the covariance matrix of white noise
public ArmaModel(Vector mu,
Matrix[] phi,
Matrix[] theta)
mu - the intercept (constant) vectorphi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficient
public ArmaModel(Matrix[] phi,
Matrix[] theta,
Matrix sigma)
phi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficientsigma - the covariance matrix of white noise
public ArmaModel(Matrix[] phi,
Matrix[] theta)
phi - the AR coefficients (excluding the initial 1); null if no AR coefficienttheta - the MA coefficients (excluding the initial 1); null if no MA coefficientpublic ArmaModel(ArmaModel that)
that - a multivariate ARMA modelpublic ArmaModel(ArmaModel model)
model - a univariate ARMA model| Method Detail |
|---|
public Matrix armaMeanNoIntercept(Matrix arLags,
Matrix maLags)
arLags - the AR lagsmaLags - the MA lags
public Matrix armaMean(Matrix arLags,
Matrix maLags)
arLags - the AR lagsmaLags - the MA lags
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||