Calculates the 2D IFFT of an array.
IFFT2(a, rowlen, collen)
a |
- |
An array. |
rowlen |
- |
Optional. An integer, the IFFT row size. Defaults to |
collen |
- |
Optional. An integer, the IFFT column size. Defaults to |
A complex array.
ifft2(fft2({{1, 2}, {3, 4}}))
returns the complex array
{{1+0i, 2+0i},
{3+0i, 4+0i}}
Since IFFT2 returns a complex result, the result can be converted into real form using the REAL function.
If rowlen is larger than the number of input rows or collen is greater than the number input of columns, the input is zero-padded.
If the input data is a series (i.e. a single column), a 1D IFFT is performed.