pub fn rfft<T>(
input: impl AsRef<[T]>,
input_permutation: impl AsRef<[usize]>,
) -> Vec<Complex<T>>Expand description
Computes the Fast Fourier Transform of an one-dimensional, real-valued signal. TODO: Optimize the function to avoid unnecessary computation.