Interface ScalarMinimizer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
minimize(Function<Double,Double> function, double startPosition, double lowerBound, double upperBound)
-
-
-
Method Detail
-
minimize
double minimize(Function<Double,Double> function, double startPosition, double lowerBound, double upperBound)
- Parameters:
function
- The function to minimize, not nullstartPosition
- The start positionlowerBound
- The lower boundupperBound
- The upper bound, must be greater than the upper bound- Returns:
- The minimum
-
-