Skip to main content

C2rPlanner

Trait C2rPlanner 

Source
pub trait C2rPlanner {
    type Plan: C2rPlan;

    // Required method
    fn plan_c2r(&mut self, n_fft: usize) -> SpectrogramResult<Self::Plan>;
}
Expand description

Planner that can construct inverse FFT plans.

Required Associated Types§

Required Methods§

Source

fn plan_c2r(&mut self, n_fft: usize) -> SpectrogramResult<Self::Plan>

Plan a complex-to-real inverse FFT.

§Arguments
  • n_fft - FFT size
§Returns

A plan that can perform the inverse FFT.

§Errors

Returns SpectrogramError if planning fails.

Implementors§