pub trait ComplexToReal<T> {
// Required method
fn to_real_vec(&self) -> Vec<T>;
}Expand description
Used to convert a slice of Complex into a slice of Real.
Required Methods§
Sourcefn to_real_vec(&self) -> Vec<T>
fn to_real_vec(&self) -> Vec<T>
Produces a vector of real numbers, given a slice of complex numbers.