|
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.ArModel
public class ArModel
This class represents a VAR model.
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.multivariate.stationaryprocess.arima.ArimaxModel |
|---|
mu, phi, psi, sigma, theta |
| Constructor Summary | |
|---|---|
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. |
|
| 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 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 noise
public 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
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||