cMath模块包含许多函数,这些函数用于对复数进行数学运算。 cmath.polar()函数用于将复数转换为极坐标。在此函数中传递的值可以是int,float和复数。
用法:cmath.polar(x)
参数:此方法接受以下参数。
- x:此参数是查找极坐标的数字。
返回值:这个方法返回表示极坐标的元组值。
以下示例说明了上述函数的用法:
范例1:
Python3
# Python code to implement
# the polar()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.polar() method
val = cmath.polar(1)
print(val)
输出:
(1.0, 0.0)
范例2:
Python3
# Python code to implement
# the polar()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.polar() method
val = cmath.polar(2 + 4j)
print(val)
输出:
(4.47213595499958, 1.1071487177940904)
相关用法
- Python Wand function()用法及代码示例
- Python int()用法及代码示例
- Python id()用法及代码示例
- Python cmp()用法及代码示例
- Python oct()用法及代码示例
- Python str()用法及代码示例
- Python map()用法及代码示例
- Python now()用法及代码示例
- Python dir()用法及代码示例
- Python ord()用法及代码示例
- Python tell()用法及代码示例
- Python sum()用法及代码示例
- Python hex()用法及代码示例
- Python Wand arc()用法及代码示例
- Python locals()用法及代码示例
- Python join()用法及代码示例
- Python Union()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Python – cmath.polar() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。