Skip to main content

poly_eval

Function poly_eval 

Source
pub fn poly_eval(coeffs: &[Complex], z: Complex) -> Complex
Expand description

Evaluate a polynomial with complex coefficients at complex point z.

Coefficients are in descending order: coeffs[0] z^n + ... + coeffs[n].