Type Alias num_complex::Complex32
source · pub type Complex32 = Complex<f32>;
Aliased Type§
struct Complex32 {
pub re: f32,
pub im: f32,
}
Fields§
§re: f32
Real portion of the complex number
im: f32
Imaginary portion of the complex number