Function sciport_rs::signal::tools::poly

source ·
pub fn poly<T: Num + Copy>(zeroes: ArrayView1<'_, T>) -> Array1<T>
Expand description

Compute polynomial coefficients from zeroes

Examples

let complex_z = array![ Complex64::new(2.1, 3.2), Complex64::new(1.0, 1.0) ];

let coeffs = poly((&complex_z).into());