public class ARMAModel extends ARIMAModel
| Constructor and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
getArmapublic 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 variancepublic 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 coefficientpublic 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 variancepublic 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 modelpublic double armaMeanNoIntercept(double[] arLags,
double[] maLags)
arLags - the AR lagsmaLags - the MA lagspublic double armaMean(double[] arLags,
double[] maLags)
arLags - the AR lagsmaLags - the MA lags