Type Alias cf32

Source
pub type cf32 = Complex32;
Expand description

Shorthand for Complex Default sample type This type is repr(C), thus 2 f32s back-to-back equivalent to [f32;2]

Aliased Type§

#[repr(C)]
pub struct cf32 { pub re: f32, pub im: f32, }

Fields§

§re: f32

Real portion of the complex number

§im: f32

Imaginary portion of the complex number