Trait DFT

Source
pub trait DFT<T> {
    type Output;

    // Required method
    fn dft(&self) -> Self::Output;
}
Expand description

Trait for computing the Discrete Fourier Transform (DFT) of a sequence.

Required Associated Types§

Required Methods§

Source

fn dft(&self) -> Self::Output

Implementors§