pub fn fft_with(input: &[f32], backend: Backend) -> (Vec<f32>, Vec<f32>)
Forward FFT using the specified backend.
Same semantics as [fft]: zero-pads to next power of two, returns (real, imag) of length n.next_power_of_two().
fft
(real, imag)
n.next_power_of_two()