|
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
public class ArmaModel
This class represents a univariate ARMA model.
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.ArimaxModel |
|---|
AR, MA, mu, psi, sigma |
| Constructor Summary | |
|---|---|
ArmaModel(ArmaModel that)
Copy constructor. |
|
ArmaModel(double[] AR,
double[] MA)
Construct a zero-intercept (mu) univariate ARMA model with unit variance. |
|
ArmaModel(double[] AR,
double[] MA,
double sigma)
Construct a zero-intercept (mu) univariate ARMA model. |
|
ArmaModel(double mu,
double[] AR,
double[] MA)
Construct a univariate ARMA model with unit variance. |
|
ArmaModel(double mu,
double[] AR,
double[] MA,
double sigma)
Construct a univariate ARMA model. |
|
| Method Summary | |
|---|---|
double |
armaMean(double[] arLags,
double[] maLags)
Compute the univariate ARMA conditional mean. |
double |
armaMeanNoIntercept(double[] arLags,
double[] maLags)
Compute the zero-intercept (mu) univariate ARMA conditional mean. |
| 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 ArmaModel(double mu,
double[] AR,
double[] MA,
double sigma)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1); null if no AR coefficientsMA - the MA coefficients (excluding the initial 1); null if no MA coefficientssigma - the white noise variance
public ArmaModel(double mu,
double[] AR,
double[] MA)
mu - the intercept (constant) termAR - the AR coefficients (excluding the initial 1); null if no AR coefficientMA - the MA coefficients (excluding the initial 1); null if no MA coefficient
public ArmaModel(double[] AR,
double[] MA,
double sigma)
AR - the AR coefficients (excluding the initial 1); null if no AR coefficientMA - the MA coefficients (excluding the initial 1); null if no MA coefficientsigma - the white noise variance
public ArmaModel(double[] AR,
double[] MA)
AR - the AR coefficients (excluding the initial 1); null if no AR coefficientMA - the MA coefficients (excluding the initial 1); null if no MA coefficientpublic ArmaModel(ArmaModel that)
that - a univariate ARMA model| Method Detail |
|---|
public double armaMeanNoIntercept(double[] arLags,
double[] maLags)
arLags - the AR lagsmaLags - the MA lags
public double armaMean(double[] arLags,
double[] 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 | |||||||