我想使用 MATLAB 中的两个函数 pol2cart 和 cart2pol。
是否有任何等效的 Python 函数?或者如果我们可以定义函数?
例如,我尝试使用 cmath.polar 函数,但它只接受一个参数,而我有 2 个参数要在 polar 和 rec 函数中传递。
我曾尝试将此功能用于 cart2pol:
def cart2pol(x, y):
theta = atan2(y, x)
rho = sqrt(x**2 + y**2)
return (theta, rho)
谢谢