ZeroCrossingBracketingFindIntervalsWithin Method |
Finds subintervals within a range that contain a sign change.
Namespace: Altaxo.Calc.RootFindingAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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,
DoubleA sequence of intervals that contain a sign change.
See Also