|
BrentSearchMinimize Method (FuncDouble, Double, Double, Double, Double, Int32)
|
Finds the minimum of a function in the interval [a;b]
Namespace:
Accord.Math.Optimization
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double Minimize(
Func<double, double> function,
double lowerBound,
double upperBound,
double tol = 1E-06,
int maxIterations = 500
)
Public Shared Function Minimize (
function As Func(Of Double, Double),
lowerBound As Double,
upperBound As Double,
Optional tol As Double = 1E-06,
Optional maxIterations As Integer = 500
) As Double
Request Example
View SourceParameters
- function
- Type: SystemFuncDouble, Double
The function to be minimized. - lowerBound
- Type: SystemDouble
Start of search region. - upperBound
- Type: SystemDouble
End of search region. - tol (Optional)
- Type: SystemDouble
The tolerance for determining the solution. - maxIterations (Optional)
- Type: SystemInt32
The maximum number of iterations before terminating.
Return Value
Type:
DoubleThe location of the minimum of the function in the given interval.
See Also