Garch Model Constructor
Definition
Namespace: Numerics.NET.Statistics.TimeSeriesAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Garch | Constructs a new ARCH model of the specified order. |
Garch | Constructs a new GARCH model of the specified order. |
Garch | Constructs a new ARCH model of the specified order. |
Garch | Constructs a new GARCH model of the specified order. |
GarchModel(Int32)
Constructs a new ARCH model of the specified order.
Exceptions
Argument | q is less than 0.0. |
GarchModel(Int32, Int32)
Constructs a new GARCH model of the specified order.
public GarchModel(
int p,
int q
)
Parameters
Exceptions
Argument | p is less than 0.0. -or- q is less than 0.0. |
GarchModel(Vector<Double>, Int32)
Constructs a new ARCH model of the specified order.
public GarchModel(
Vector<double> variable,
int q
)
Parameters
Exceptions
Argument | variable is null. |
Argument | q is less than 0.0. |
GarchModel(Vector<Double>, Int32, Int32)
Constructs a new GARCH model of the specified order.
public GarchModel(
Vector<double> variable,
int p,
int q
)
Parameters
Exceptions
Argument | variable is null. |
Argument | p is less than 0.0. -or- q is less than 0.0. |