The derivative tolerance used by member method ComputeMin to decide if the current point is a local minimum.

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

Syntax

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

Field Value

A double scalar value specifying the derivative tolerance used by member method ComputeMin.

Remarks

This is the second stopping criterion. x is returned as a solution when G(x) is less than or equal to DerivTolerance. DerivTolerance should be nonnegative, otherwise zero will be used. By default, DerivTolerance is set to 1.0e-8.

See Also