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.3179.0 (4.8.3179.0)
Syntax public static List<Complex> FindRoots(
params double[] Input
)
Parameters
- Input Double
- The coefficients for the polynomial starting with the constant (zero degree) and ends with the highest degree. Missing coefficients must be provided as zeros.
Return Value
ListComplexAll the real and complex roots that are found are returned in a list of complex numbers. The list is not neccessarily sorted.
See Also