Sets the initial values for the autoregressive terms to the p values in ar.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public void SetAR(
	double[] ar
)
Visual Basic (Declaration)
Public Sub SetAR ( _
	ar As Double() _
)
Visual C++
public:
void SetAR(
	array<double>^ ar
)

Parameters

ar
Type: array< System..::.Double >[]()[]
An input double array of length p containing the initial values for the autoregressive terms. If this method is not called, initial values are computed by method of moments in the ARMA class.

See Also