pub fn ifft2_parallel<T>(
input: &Array2<T>,
shape: Option<(usize, usize)>,
axes: Option<(i32, i32)>,
norm: Option<&str>,
workers: Option<usize>,
) -> FFTResult<Array2<Complex64>>
Expand description
Compute the inverse 2D FFT using parallel processing
§Arguments
input
- Input 2D array of complex valuesshape
- Shape of the output (optional)axes
- Axes along which to compute the FFT (optional)norm
- Normalization mode (optional)workers
- Number of worker threads to use (optional)
§Returns
A 2D array of complex values representing the inverse FFT result