Click or drag to resize
ZeroPolynomialComputeRoots Method (Complex)
Computes the roots of the polynomial with Complex coefficients.

p(x) = {\rm coef}[n] \times x^n + {\rm coef}[n-1] \times x^{n-1} + \ldots + {\rm coef}[0]

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public Complex[] ComputeRoots(
	Complex[] coef
)

Parameters

coef
Type: Imsl.MathComplex
A Complex array containing the polynomial coefficients.

Return Value

Type: Complex
A Complex array containing the roots of the polynomial.
Exceptions
ExceptionCondition
DidNotConvergeException is thrown if if the iteration for the zeros did not converge.
See Also