The stopping tolerance.

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

Syntax

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

Field Value

A double scalar value specifying the stopping tolerance.

Remarks

The algorithm attempts to generate x such that {\Vert b-Ax \Vert}_2 \le t {\Vert b \Vert}_2, where t = RelativeError. By default, RelativeError is set to 1.4901161193847656e-08.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown if RelativeError is less than or equal to 0.0.

See Also