Click or drag to resize
MinUnconDerivTolerance Property
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.2.0
Syntax
public double DerivTolerance { get; set; }

Property Value

Type: Double
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