pub fn ifft(
a: impl AsRef<Array>,
n: impl Into<Option<i32>>,
axis: impl Into<Option<i32>>,
) -> Result<Array>Expand description
One dimensional inverse discrete Fourier Transform.
ยงParams
a: Input array.n: Size of the transformed axis. The corresponding axis in the input is truncated or padded with zeros to matchn. The default value isa.shape[axis]if not specified.axis: Axis along which to perform the FFT. The default is-1if not specified.