Click or drag to resize
GARCH Constructor
Constructor for GARCH.

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

Parameters

p
Type: SystemInt32
A int scalar containing the number of autoregressive (AR) parameters.
q
Type: SystemInt32
A int scalar containing the number of moving average (MA) parameters.
y
Type: SystemDouble
A double array containing the observed time series data.
xguess
Type: SystemDouble
A double array of length p + q + 1 containing the initial values for the parameter array.
Exceptions
ExceptionCondition
ArgumentException is thrown if the dimensions of y, and xguess are not consistent
See Also