Skip to main content

C2rPlanner

Trait C2rPlanner 

Source
pub trait C2rPlanner<T = f64> {
    type Plan: C2rPlan<T>;

    // 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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§