Skip to main content

ifft_with

Function ifft_with 

Source
pub fn ifft_with(
    input_real: &[f32],
    input_imag: &[f32],
    backend: Backend,
) -> Vec<f32>
Expand description

Inverse FFT using the specified backend.

Same semantics as [ifft]: returns Vec<f32> of length 2*n where [0..n] is real and [n..2n] is imaginary.