Type Alias fftw_complex

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

Alias for a Complex<f64>

Aliased Type§

struct fftw_complex {
    pub re: f64,
    pub im: f64,
}

Fields§

§re: f64

Real portion of the complex number

§im: f64

Imaginary portion of the complex number