pub fn ifftn<'a>(
    a: impl AsRef<Array>,
    s: impl IntoOption<&'a [i32]>,
    axes: impl IntoOption<&'a [i32]>,
) -> Result<Array>Expand description
n-dimensional inverse discrete Fourier Transform.
ยงParams
- a: The input array.
- s: Sizes of the transformed axes. The corresponding axes in the input are truncated or padded with zeros to match the sizes in- s. The default value is the sizes of- aalong- axesif not specified.
- axes: Axes along which to perform the FFT. The default is- Nonein which case the FFT is over the last- len(s)axes are or all axes if- sis also- None.