Altaxo.Calc.RootFinding Namespace |
[Missing <summary> documentation for "N:Altaxo.Calc.RootFinding"]
Classes | Class | Description |
---|
 | AbstractRootFinder | |
 | Bisection |
Bisection root-finding algorithm.
|
 | BisectionRootFinder | |
 | Brent |
Algorithm by Brent, Van Wijngaarden, Dekker et al.
Implementation inspired by Press, Teukolsky, Vetterling, and Flannery, "Numerical Recipes in C", 2nd edition, Cambridge University Press
|
 | BrentRootFinder | |
 | Broyden |
Algorithm by Broyden.
Implementation inspired by Press, Teukolsky, Vetterling, and Flannery, "Numerical Recipes in C", 2nd edition, Cambridge University Press
|
 | ComplexPolynomialRootFinder_JenkinsTraub |
Implements the Jenkins-Traub algorithm for polynoms with real coefficients.
|
 | Cubic |
Finds roots to the cubic equation x^3 + a2*x^2 + a1*x + a0 = 0
Implements the cubic formula in http://mathworld.wolfram.com/CubicFormula.html
|
 | FalsePositionRootFinder | |
 | NewtonRaphson |
Pure Newton-Raphson root-finding algorithm without any recovery measures in cases it behaves badly.
The algorithm aborts immediately if the root leaves the bound interval.
|
 | NewtonRootFinder | |
 | QuickRootFinding |
Provides static methods for quick and dirty root finding without instantiating a class.
|
 | RealPolynomialRootFinder_JenkinsTraub |
Implements the Jenkins-Traub algorithm for polynoms with real coefficients.
|
 | RidderRootFinder | |
 | RobustNewtonRaphson |
Robust Newton-Raphson root-finding algorithm that falls back to bisection when overshooting or converging too slow, or to subdivision on lacking bracketing.
|
 | RootFinderException | |
 | Secant |
Pure Secant root-finding algorithm without any recovery measures in cases it behaves badly.
The algorithm aborts immediately if the root leaves the bound interval.
|
 | SecantRootFinder | |
 | UnaryFunctions | |
 | ZeroCrossingBracketing | |
Structures | Structure | Description |
---|
 | Range | |