pub fn c64<T>(re: T, im: T) -> Complex<f64>where T: Into<f64>,
Create a new Complex<f64> with arguments that can convert Into<f64>.
Complex<f64>
Into<f64>
use num_complex::{c64, Complex64}; assert_eq!(c64(1, 2), Complex64::new(1.0, 2.0));