[][src]Trait fftw::plan::C2RPlan

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

Trait for the plan of Complex-to-Real transformation

Associated Types

Loading content...

Required methods

fn new(
    shape: &[usize],
    in_: &mut [Self::Complex],
    out: &mut [Self::Real],
    flag: Flag
) -> Result<Self>

Create new plan

fn c2r(
    &mut self,
    in_: &mut [Self::Complex],
    out: &mut [Self::Real]
) -> Result<()>

Execute complex-to-real transform

Loading content...

Provided methods

fn aligned(shape: &[usize], flag: Flag) -> Result<Self>

Create new plan with aligned vector

Loading content...

Implementors

impl C2RPlan for Plan<c32, f32, Plan32>[src]

type Real = f32

type Complex = c32

fn aligned(shape: &[usize], flag: Flag) -> Result<Self>[src]

impl C2RPlan for Plan<c64, f64, Plan64>[src]

type Real = f64

type Complex = c64

fn aligned(shape: &[usize], flag: Flag) -> Result<Self>[src]

Loading content...