我想使用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)
谢谢