Skip to main content

Complex64

Type Alias Complex64 

Source
pub type Complex64 = Complex<f64>;
Expand description

Complex number type for FFT computation.

Re-exports num_complex::Complex64 as the replacement for the C Fukusosuu struct. This gives us full arithmetic, exp, from_polar, norm, and everything else we’ll need for the FFT port in Phase 3. Alias for a Complex<f64>

Aliased Type§

#[repr(C)]
pub struct Complex64 { pub re: f64, pub im: f64, }

Fields§

§re: f64

Real portion of the complex number

§im: f64

Imaginary portion of the complex number