|
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.arima.ARIMAXModel
com.numericalmethod.suanshu.stats.timeseries.linear.univariate.arima.ARIMAModel
com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arma.ARMAModel
com.numericalmethod.suanshu.stats.timeseries.linear.univariate.stationaryprocess.arma.ARModel
public class ARModel
This class represents an AR model.
| Constructor Summary | |
|---|---|
ARModel(ARModel that)
Copy constructor. |
|
ARModel(double[] AR)
Construct a univariate AR model with unit variance and zero-intercept (mu). |
|
ARModel(double[] AR,
double sigma)
Construct a univariate AR model with zero-intercept (mu). |
|
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.arma.ARMAModel |
|---|
conditionalMean, getDemeanedModel, unconditionalMean |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.arima.ARIMAModel |
|---|
getARMA |
| Methods inherited from class com.numericalmethod.suanshu.stats.timeseries.linear.univariate.arima.ARIMAXModel |
|---|
AR, d, getARMAX, MA, maxPQ, mu, p, phi, phiPolynomial, psi, q, sigma, theta, thetaPolynomial, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, 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 | |||||||