Python等效于matlab cart2pol和pol2cart

时间:2014-08-01 10:43:30

标签: python matlab cmath

我想使用MATLAB中存在的两个函数pol2cart和cart2pol。

是否有任何等效的Python函数?或者,如果我们可以定义函数?

例如,我尝试使用cmath.polar函数,但它只接受一个参数,而我有两个参数在polar和rec函数内传递。

我已尝试将此功能用于cart2pol:

def cart2pol(x, y):
    theta = atan2(y, x)
    rho = sqrt(x**2 + y**2)
    return (theta, rho)

谢谢

0 个答案:

没有答案