Click or drag to resize

ZeroCrossingBracketingFindIntervalsWithin Method

Finds subintervals within a range that contain a sign change.

Namespace: Altaxo.Calc.RootFinding
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IEnumerable<(double , double )> FindIntervalsWithin(
	Func<double, double> f,
	double lowerBound,
	double upperBound,
	int subdivisions
)

Parameters

f  FuncDouble, Double
The function to evaluate.
lowerBound  Double
The lower bound of the search interval.
upperBound  Double
The upper bound of the search interval.
subdivisions  Int32
The number of subdivisions to inspect.

Return Value

IEnumerableValueTupleDouble, Double
A sequence of intervals that contain a sign change.
See Also