当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cmath.rect()用法及代码示例


cmath是用于复数数学的Python 内置模块。 cmath模块具有方法rect(),该方法用于将极坐标转换为矩形形式。

用法: cmath.rect(r, phi)

参数:它有两个参数。第一个参数r表示复数的模数,第二个参数表示相位。这两个参数都是必需的。没有是可选的。

返回:返回模数为r且相位为phi的复数Z。

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



范例1:

Python3

# Import the Library 
import cmath  
  
# Printing the result 
print (cmath.rect(3,10))

输出:

(-2.517214587229357-1.6320633326681093j)

范例2:在该示例中,模量被视为零。

Python3

# Import the Library 
import cmath  
  
# Printing the result 
print (cmath.rect(0,1))

输出:

0j

范例3:在此示例中,相位为零

Python3

# Import the Library 
import cmath  
  
# Printing the result 
print (cmath.rect(1,0))

输出:

(1+0j)



相关用法


注:本文由纯净天空筛选整理自aman neekhara大神的英文原创作品 Python – cmath.rect() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。