|
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.univariate.stationaryprocess.arima.ArimaxModel
com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.ArimaModel
com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.arma.ArmaModel
com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.arma.ArModel
public class ArModel
This class represents an AR model.
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.ArimaxModel |
|---|
AR, MA, mu, psi, sigma |
| Constructor Summary | |
|---|---|
ArModel(ArModel that)
Copy constructor. |
|
ArModel(double[] AR)
Construct a zero-intercept (mu) univariate AR model with unit variance. |
|
ArModel(double[] AR,
double sigma)
Construct a zero-intercept (mu) univariate AR model. |
|
ArModel(double mu,
double[] AR)
Construct a univariate AR model with unit variance. |
|
ArModel(double mu,
double[] AR,
double sigma)
Construct a univariate AR model. |
|
| Method Summary |
|---|
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.arma.ArmaModel |
|---|
armaMean, armaMeanNoIntercept |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.ArimaModel |
|---|
getArma |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.ArimaxModel |
|---|
AR, AR, d, 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(double mu,
double[] AR,
double sigma)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1)sigma - the white noise variance
public ArModel(double mu,
double[] AR)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1)
public ArModel(double[] AR,
double sigma)
AR - the AR coefficients (excluding the initial 1)sigma - the white noise variancepublic ArModel(double[] AR)
AR - the AR coefficients (excluding the initial 1)public ArModel(ArModel that)
that - 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 | |||||||