Click or drag to resize

AbstractRootFinderSearchBracketsOutward Method

Detect a range containing at least one root.

Namespace: Altaxo.Calc.RootFinding
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool SearchBracketsOutward(
	ref double xmin,
	ref double xmax,
	double factor
)

Parameters

xmin  Double
Lower value of the range.
xmax  Double
Upper value of the range
factor  Double
The growing factor of research. Usually 1.6.

Return Value

Boolean
True if the bracketing operation succeeded, else otherwise.
Remarks
This iterative methods stops when two values with opposite signs are found.
See Also