pub type c32 = Complex<f32>;
Alias for a Complex<f32>
Complex<f32>
struct c32 { pub re: f32, pub im: f32, }
re: f32
Real portion of the complex number
im: f32
Imaginary portion of the complex number