将代码从MATLAB转换为PYTHON的语法

时间:2014-03-14 10:50:24

标签: python python-2.7

我正在尝试将代码段从MATLAB转换为Python。有人可以帮助我将MATLAB中的以下代码行转换为Python

f = ifftshift( 1.0 ./ (1.0 + (radius ./ cutoff).^(2*n)) );

其中变量' radius'和'截止'是两个矩阵。

先谢谢。

1 个答案:

答案 0 :(得分:0)

您可以将numpy模块用于ifftshift
**代替^(python中的^xor

import numpy as np
np.fft.ifftshift(1.0 / (1.0 + (radius / cutoff) ** (2*n)))