pub type Complex = Complex<Float>;Expand description
Complex (I/Q) data.
Aliased Type§
#[repr(C)]pub struct Complex {
pub re: f32,
pub im: f32,
}Fields§
§re: f32Real portion of the complex number
im: f32Imaginary portion of the complex number