Python/ref cmath rect

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python cmath.rect()方法

❮cmath方法

将极坐标转换为矩形形式:

    #import cmath for complex number operations 
import cmath

#convert 
    a polar coordinate to rectangular form

    print(cmath.rect(3.1622776601683795, 1.2490457723982544))

定义和用法

The cmath.rect() 方法将极坐标转换为复数的矩形形式。它创建具有相位和模数的复数。

此方法等效于 r * (math.cos(phi) + math.sin(phi)*1j) .

注意: 半径 r 是向量的长度,并且 phi (相位角)是与实轴的角度。

句法

    cmath.rect(r, phi)
  

参数值

参数 描述
r 需要。表示复数的模数
phi 需要。表示复数的相位

技术细节

返回值: A

complex 值,代表复数的矩形形式

Python版本: 2.6

❮cmath方法