pub trait Fft<T, const SIZE: usize> {
// Required method
fn fft(&self) -> [Complex<T>; SIZE];
}Expand description
A trait for performing fast DFT’s on structs representing complex signals with a size known at compile time.
pub trait Fft<T, const SIZE: usize> {
// Required method
fn fft(&self) -> [Complex<T>; SIZE];
}A trait for performing fast DFT’s on structs representing complex signals with a size known at compile time.