public static Extremum FindMinimum(
Func<double, double> f,
Interval r,
ExtremumSettings settings
)
Public Shared Function FindMinimum (
f As Func(Of Double, Double),
r As Interval,
settings As ExtremumSettings
) As Extremum
public:
static Extremum^ FindMinimum(
Func<double, double>^ f,
Interval r,
ExtremumSettings^ settings
)
static member FindMinimum :
f : Func<float, float> *
r : Interval *
settings : ExtremumSettings -> Extremum
When you supply settings, note that the supplied RelativePrecision and AbsolutePrecision values refer to argument (i.e. x) values, not function (i.e. f) values. Note also that, for typical functions, the best attainable relative precision is of the order of the square root of machine precision (about 10-7), i.e. half the number of digits in a Double. This is because to identify an extremum we need to resolve changes in the function value, and near an extremum δf ∼ (δx)2, so changes in the function value δf ∼ ε correspond to changes in the argument value δx ∼ √ε. If you supply zero values for both precision settings, the method will adaptively approximate the best attainable precision for the supplied function and locate the extremum to that resolution. This is our suggested practice unless you know that you require a less precise determination.
ArgumentNullException | f is null or settings is null. |
NonconvergenceException | More than the maximum allowed number of function evaluations occurred without a minimum being determined to the prescribed precision. |