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