pub trait DFT<T> { type Output; // Required method fn dft(&self) -> Self::Output; }
Trait for computing the Discrete Fourier Transform (DFT) of a sequence.