Python cmath.atan() 方法
实例
求复数的反正切:
#import cmath for complex number operations
import cmath
#find
the arc tangent of a complex number
print (cmath.atan(2 + 3j))
亲自试一试 »
定义和用法
cmath.atan()
方法返回复数的反正切。
主要有两种分支切割:
- 从 1j 沿虚轴延伸到 ∞j 向右
- 从 -1j 沿虚轴延伸到 -∞j 向左
语法
cmath.atan(x)
参数值
参数 | 描述 |
---|---|
x | 必需。求反正切的数 |
技术细节
返回值: | 一个 complex 复数值,表示复数的反正切 |
---|---|
Python 版本: | 2.6 |