|  | RootFinderDExpandBracket Method (Double, Double) | 
            Takes the initial guessed range [x0, x1] and expands
            this interval such that the root xroot where 
            f(xroot) = 0 is in the interval.
            
 
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
 Syntax
Syntaxpublic bool ExpandBracket(
	ref double x0,
	ref double x1
)
Public Function ExpandBracket ( 
	ByRef x0 As Double,
	ByRef x1 As Double
) As Boolean
public:
bool ExpandBracket(
	double% x0, 
	double% x1
)
member ExpandBracket : 
        x0 : float byref * 
        x1 : float byref -> bool 
Parameters
- x0
- Type: SystemDouble
 The left bound of the interval.
- x1
- Type: SystemDouble
 The right bound of the interval.
Return Value
Type: 
Boolean if a valid bracket was found; otherwise 
.
            
 See Also
See Also