|
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
public class ArimaModel
This class represents an ARIMA model.
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.ArimaxModel |
|---|
AR, MA, mu, psi, sigma |
| Constructor Summary | |
|---|---|
ArimaModel(ArimaModel that)
Copy constructor. |
|
ArimaModel(double[] AR,
int d,
double[] MA)
Construct a zero-intercept (mu) univariate ARIMA model with unit variance. |
|
ArimaModel(double[] AR,
int d,
double[] MA,
double sigma)
Construct a zero-intercept (mu) univariate ARIMA model. |
|
ArimaModel(double mu,
double[] AR,
int d,
double[] MA)
Construct a univariate ARIMA model with unit variance. |
|
ArimaModel(double mu,
double[] AR,
int d,
double[] MA,
double sigma)
Construct a univariate 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.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 ArimaModel(double mu,
double[] AR,
int d,
double[] MA,
double sigma)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1); null if no AR coefficientsd - the order of integrationMA - the MA coefficients (excluding the initial 1); null if no MA coefficientssigma - the white noise variance
public ArimaModel(double mu,
double[] AR,
int d,
double[] MA)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1); null if no AR coefficientd - the order of integrationMA - the MA coefficients (excluding the initial 1); null if no MA coefficient
public ArimaModel(double[] AR,
int d,
double[] MA,
double sigma)
AR - the AR coefficients (excluding the initial 1); null if no AR coefficientd - the order of integrationMA - the MA coefficients (excluding the initial 1); null if no MA coefficientsigma - the white noise variance
public ArimaModel(double[] AR,
int d,
double[] MA)
AR - the AR coefficients (excluding the initial 1); null if no AR coefficientd - the order of integrationMA - the MA coefficients (excluding the initial 1); null if no MA coefficientpublic ArimaModel(ArimaModel that)
that - 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 | |||||||