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.
pub trait IfftMut<T, const SIZE: usize> {
// Required method
fn ifft_mut(&mut self);
}
A trait for performing fast in-place IDFT’s on structs representing complex signals with a size known at compile time.