Trait fftw::plan::C2CPlan [] [src]

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

Trait for the plan of Complex-to-Complex transformation

Associated Types

Required Methods

Create new plan

Execute complex-to-complex transform

Implementors