macro_rules! complex_re_vec {
( $( $x:expr ),* ) => { ... };
}Expand description
Usage: complex_re_vec!(input: [f64; n]) -> Vec<Complex<f64>>
Returns a vector of complex number with zero imaginary part, and reals set by input.
macro_rules! complex_re_vec {
( $( $x:expr ),* ) => { ... };
}Usage: complex_re_vec!(input: [f64; n]) -> Vec<Complex<f64>>
Returns a vector of complex number with zero imaginary part, and reals set by input.