pub trait C2cPlanF32: Send {
// Required methods
fn n_fft(&self) -> usize;
fn forward(&mut self, buf: &mut [Complex<f32>]) -> SpectrogramResult<()>;
fn inverse(&mut self, buf: &mut [Complex<f32>]) -> SpectrogramResult<()>;
}Expand description
A planned complex-to-complex FFT using f32 (single-precision) arithmetic.
Same contract as C2cPlan but operates on single-precision floats.