First convergence criterion.

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

Syntax

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

Field Value

A double containing the first convergence criterion. Error must be greater than or equal to 0.0.

Default: Error = 2.0e-8/XScale.

Remarks

A root is accepted if it is bracketed within an interval of length Error, \left| f\left(x\right) \right|\le \tau, where \tau = Error.

See Also