GoldenSectionFindExtremumCheckInitialBracketingPoints 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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