|
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.MaModel
public class MaModel
This class represents an MA model.
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arima.ArimaxModel |
|---|
AR, MA, mu, psi, sigma |
| Constructor Summary | |
|---|---|
MaModel(double[] MA)
Construct a zero-mean univariate MA model with unit variance. |
|
MaModel(double[] MA,
double sigma)
Construct a zero-mean univariate MA model. |
|
MaModel(double mu,
double[] MA)
Construct a univariate MA model with unit variance. |
|
MaModel(double mu,
double[] MA,
double sigma)
Construct a univariate MA model. |
|
MaModel(MaModel that)
Copy constructor. |
|
| 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 MaModel(double mu,
double[] MA,
double sigma)
mu - the intercept (constant) termMA - the MA coefficients (excluding the initial 1)sigma - the white noise variance
public MaModel(double mu,
double[] MA)
mu - the intercept (constant) termMA - the MA coefficients (excluding the initial 1)
public MaModel(double[] MA,
double sigma)
MA - the MA coefficients (excluding the initial 1)sigma - the white noise variancepublic MaModel(double[] MA)
MA - the MA coefficients (excluding the initial 1)public MaModel(MaModel that)
that - a univariate MA model
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||