Trait IfftMut

Source
pub trait IfftMut<T, const SIZE: usize> {
    // Required method
    fn ifft_mut(&mut self);
}
Expand description

A trait for performing fast in-place IDFT’s on structs representing complex signals with a size known at compile time.

Required Methods§

Source

fn ifft_mut(&mut self)

Perform a complex-valued in-place IFFT on a signal.

Implementations on Foreign Types§

Source§

impl<T: FftNum + Default, const SIZE: usize> IfftMut<T, SIZE> for [Complex<T>; SIZE]

Source§

fn ifft_mut(&mut self)

Implementors§