The maximum number of estimation iterations for missing value estimation methods AR_1 and AR_p.

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

Syntax

C#
public int MaxIterations { get; set; }
Visual Basic (Declaration)
Public Property MaxIterations As Integer
Visual C++
public:
property int MaxIterations {
	int get ();
	void set (int value);
}

Field Value

An int specifying the maximum number of iterations for the maximum likelihood estimation.

Remarks

If this limit is exceeded ARMAEstimateMissing stops execution during the Compute method and issues an Imsl.Stat.IterationLimitExceededException. By default, MaxIterations=200.

See Also