函数 ifft #
计算 N 维逆傅里叶变换
Syntax #
math.ifft(arr)
Parameters #
| Parameter | Type | Description |
|---|---|---|
arr |
Array | Matrix | 一个数组或矩阵 |
Returns #
| Type | Description |
|---|---|
| Array | Matrix | 数组的 N 维傅里叶变换 |
Throws #
Type | Description —- | ———–
Examples #
math.ifft([[2, 2], [0, 0]]) // returns [[{re:1, im:0}, {re:0, im:0}], [{re:1, im:0}, {re:0, im:0}]]