public class ARIMAModel extends ARIMAXModel
| Constructor and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
ARMAModel |
getArma()
Get the ARMA specification of this ARIMA model, essentially ignoring the differencing.
|
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 variancepublic 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 coefficientpublic 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 variancepublic 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 modelpublic ARMAModel getArma()