RealPolynomialRootFinder_JenkinsTraubFindRoots Method |
The Jenkins–Traub algorithm for finding the roots of a polynomial.
Namespace: Altaxo.Calc.RootFindingAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic static List<Complex> FindRoots(
params double[] Input
)
Parameters
- Input Double
- The coefficients for the polynomial starting with the constant (zero degree) and ending with the highest degree. Missing coefficients must be provided as zeros.
Return Value
ListComplex
All real and complex roots that are found, returned as a list of complex numbers. The list is not necessarily sorted.
Exceptions
See Also