Trait fftw::plan::R2CPlan [] [src]

pub trait R2CPlan: Sized {
    type Real;
    type Complex;
    fn new(
        shape: &[usize],
        in_: &mut [Self::Real],
        out: &mut [Self::Complex],
        flag: Flag
    ) -> Result<Self>;
fn r2c(
        &mut self,
        in_: &mut [Self::Real],
        out: &mut [Self::Complex]
    ) -> Result<()>; }

Trait for the plan of Real-to-Complex transformation

Associated Types

Required Methods

Create new plan

Execute real-to-complex transform

Implementors