One Dimensional Optimizer.Find Bracket Method
Definition
Namespace: Extreme.Mathematics.Optimization
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Find | Finds an interval that brackets the extremum, starting from the interval [0,1]. |
Find | Finds an interval that brackets the extremum, starting from an interval of unit width centered around the specified point. |
Find | Finds an interval that brackets the extremum, starting from an interval with the specified bounds. |
Find | Finds an interval that brackets the extremum, starting from an interval with the specified bounds and interior point. |
FindBracket
Finds an interval that brackets the extremum, starting from the interval [0,1].
public void FindBracket()
FindBracket(Double)
Finds an interval that brackets the extremum, starting from an interval of unit width centered around the specified point.
public void FindBracket(
double interiorPoint
)
Parameters
- interiorPoint Double
- The interior point of the initial bracketing interval.
Remarks
The lower and upper bounds of the bracketing interval are set to 0.5 below and above the interior point.
FindBracket(Double, Double)
Finds an interval that brackets the extremum, starting from an interval with the specified bounds.
public void FindBracket(
double lowerBound,
double upperBound
)
Parameters
Remarks
The internal point of the initial bracketing interval is situated between lowerBound and upperBound so that the ratio of the distances to each is equal to the GoldenRatio.
FindBracket(Double, Double, Double)
Finds an interval that brackets the extremum, starting from an interval with the specified bounds and
interior point.
public void FindBracket(
double lowerBound,
double upperBound,
double interiorPoint
)