pub type complex64 = Complex<f32>;
Expand description
Type alias for num_complex::Complex<f32>
.
Aliased Type§
struct complex64 {
pub re: f32,
pub im: f32,
}
Fields§
§re: f32
Real portion of the complex number
im: f32
Imaginary portion of the complex number