The relative error 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 specifying the relative error tolerance.

Remarks

The root is accepted if the relative error between two successive approximations to this root is within errorRelative. The default is the square root of the precision, about 1.0e-08.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown if RelativeError is less than 0 or greater than 1

See Also