Click or drag to resize

ComplexPolynomialRootFinder_JenkinsTraubExecute Method

The Jenkins–Traub algorithm for finding the roots of a polynomial.

Namespace: Altaxo.Calc.RootFinding
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public List<Complex> Execute(
	params Complex[] Input
)

Parameters

Input  Complex
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

ListComplex
All the real and complex roots that are found are returned in a list of complex numbers. The list is not neccessarily sorted.
See Also