BrentFindExtremumCheckInitialBracketingPoints Method (Double, Double, Double) |
Checks whether the given values will produce a valid initial bracketing interval.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public ExtremumKind CheckInitialBracketingPoints(
double a,
double b,
double c
)
Public Function CheckInitialBracketingPoints (
a As Double,
b As Double,
c As Double
) As ExtremumKind
public:
ExtremumKind CheckInitialBracketingPoints(
double a,
double b,
double c
)
member CheckInitialBracketingPoints :
a : float *
b : float *
c : float -> ExtremumKind
Parameters
- a
- Type: SystemDouble
The value of the independent variable at one of the limits of the bracketing interval. - b
- Type: SystemDouble
The value of the independent variable between the limits of the bracketing interval. - c
- Type: SystemDouble
The value of the independent variable at one of the limits of the bracketing interval.
Return Value
Type:
ExtremumKindThe type of extremum if the values will produce a valid interval; otherwise
Invalid.
See Also