Python cmath.rect() 方法
实例
将极坐标转换为矩形:
#import cmath for complex number operations
import cmath
#convert
a polar coordinate to rectangular form
print(cmath.rect(3.1622776601683795, 1.2490457723982544))
亲自试一试 »
定义和用法
cmath.rect()
方法将极坐标转换为复数的矩形形式。 它创建一个具有相位和模数的复数。
这个方法等价于r * (math.cos(phi) + math.sin(phi)*1j)
。
注释:半径r是向量的长度,phi(相位角)是与实轴的夹角 .
语法
cmath.rect(r, phi)
参数值
参数 | 描述 |
---|---|
r | 必需。表示复数的模 |
phi | 必需。 表示复数的相位 |
技术细节
返回值: | 一个complex 复数值,表示复数的矩形形式 |
---|---|
Python 版本: | 2.6 |