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