Click or drag to resize
ARMA Constructor
Constructor for ARMA.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public ARMA(
	int p,
	int q,
	double[] z
)

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
ExceptionCondition
ArgumentException is thrown if p, q, and z.Length are not consistent.
See Also