The convergence tolerance.

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

Syntax

C#
public virtual double ConvergenceTol { get; set; }
Visual Basic (Declaration)
Public Overridable Property ConvergenceTol As Double
Visual C++
public:
virtual property double ConvergenceTol {
	double get ();
	void set (double value);
}

Field Value

A double specifying the convergence tolerance.

Default: ConvergenceTol is 0.0001.

Remarks

Convergence is assumed when the relative change in the maximum likelihood from one iteration to the next is less than ConvergenceTol. If ConvergenceTol is zero, ConvergenceTol = 0.0001 is assumed.

See Also