BrentFindExtremumSetInitialBracketingPoints Method (Double, Double, Double) | 
 
            Defines the initial bracketing interval using the provided variable values.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods.Advanced
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic void SetInitialBracketingPoints(
	double a,
	double b,
	double c
)
Public Sub SetInitialBracketingPoints ( 
	a As Double,
	b As Double,
	c As Double
)
public:
void SetInitialBracketingPoints(
	double a, 
	double b, 
	double c
)
member SetInitialBracketingPoints : 
        a : float * 
        b : float * 
        c : float -> unit 
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. 
Exceptions
Remarks
            When evaluated at the three values of the independent variable provided,
            
a, 
b, and 
c, the function must indicate
            a local extremum such that at least one of the evaluated values is not equal to the other two, and
            
Function(
b) is either greater than or equal to or less than or equal to
            both 
Function(
a) and 
Function(
c).
            
See Also