Python cmath.asin() 方法
定义和用法
The cmath.asin()
方法返回复数的反正弦。
有两个分支切割
- 从 1 沿实轴向右延伸到 ∞
- 从 -1 沿实轴向左延伸到 -∞
语法
cmath.asin(x)
参数值
参数 | 描述 |
---|---|
x | 必需。要查找反正弦的数字 |
技术细节
返回值 | A complex value, representing the arc sine of a complex number |
---|---|
Python 版本 | 1.5 |