| RootFinderFExpandBracket Method (Single, Single, Single) |
Takes the initial guessed range [x0, x1] and expands
this interval such that x with f(x) = y
is in the interval.
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public bool ExpandBracket(
ref float x0,
ref float x1,
float y
)
Public Function ExpandBracket (
ByRef x0 As Single,
ByRef x1 As Single,
y As Single
) As Boolean
public:
bool ExpandBracket(
float% x0,
float% x1,
float y
)
member ExpandBracket :
x0 : float32 byref *
x1 : float32 byref *
y : float32 -> bool
Parameters
- x0
- Type: SystemSingle
The left bound of the interval. - x1
- Type: SystemSingle
The right bound of the interval. - y
- Type: SystemSingle
The y for which an x is searched for such that f(x) = y.
Return Value
Type:
Boolean if a valid bracket was found; otherwise
.
See Also