macro_rules! complex_Im_array {
    ( $( $x:expr ),*  ) => { ... };
}
Expand description

Usage: complex_Im_array!(input: [f64; n]) -> [Complex<f64>; n] Returns an array of complex number with zero real part, and imaginaries set by input.