pub type Complex = Complex64;
#[repr(C)]pub struct Complex { pub re: f64, pub im: f64, }
re: f64
Real portion of the complex number
im: f64
Imaginary portion of the complex number