Constructor for ARMA.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public ARMA(
int p,
int q,
double[] z
)
Public Sub New (
p As Integer,
q As Integer,
z As Double()
)
public:
ARMA(
int p,
int q,
array<double>^ z
)
new :
p : int *
q : int *
z : float[] -> ARMA
Parameters
- p
- Type: SystemInt32
An int scalar containing the number of autoregressive (AR)
parameters.
- q
- Type: SystemInt32
An int scalar containing the number of moving average (MA)
parameters.
- z
- Type: SystemDouble
A double array containing the observations.
Exceptions Exception | Condition |
---|
ArgumentException |
is thrown if p, q, and z.Length are not
consistent.
|
See Also