Click or drag to resize

Altaxo.Calc.RootFinding Namespace

[Missing <summary> documentation for "N:Altaxo.Calc.RootFinding"]

Classes
 ClassDescription
Public classAbstractRootFinder 
Public classBisection Bisection root-finding algorithm.
Public classBisectionRootFinder 
Public classBrent 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
Public classBrentRootFinder 
Public classBroyden Algorithm by Broyden. Implementation inspired by Press, Teukolsky, Vetterling, and Flannery, "Numerical Recipes in C", 2nd edition, Cambridge University Press
Public classComplexPolynomialRootFinder_JenkinsTraub Implements the Jenkins-Traub algorithm for polynoms with real coefficients.
Public classCubic 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
Public classFalsePositionRootFinder 
Public classNewtonRaphson 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.
Public classNewtonRootFinder 
Public classQuickRootFinding Provides static methods for quick and dirty root finding without instantiating a class.
Public classRealPolynomialRootFinder_JenkinsTraub Implements the Jenkins-Traub algorithm for polynoms with real coefficients.
Public classRidderRootFinder 
Public classRobustNewtonRaphson Robust Newton-Raphson root-finding algorithm that falls back to bisection when overshooting or converging too slow, or to subdivision on lacking bracketing.
Public classRootFinderException 
Public classSecant 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.
Public classSecantRootFinder 
Public classUnaryFunctions 
Public classZeroCrossingBracketing 
Structures
 StructureDescription
Public structureRange