Python/ref cmath asin
来自菜鸟教程
<languages />
Python cmath.asin()方法
例
查找复数的反正弦值:
#import cmath for complex number operations import cmath #find the arc sine of a complex number print (cmath.asin(2 + 3j))
定义和用法
The
cmath.asin()
方法返回复数的反正弦值。
有两个分支切口:
- 沿实轴从1右延伸到∞
- 从-1沿实轴向左延伸到-∞
句法
cmath.asin(x)
参数值
参数 | 描述 |
---|---|
x | 需要。找到一个正弦的数字 |
技术细节
返回值: | A
|
Python版本: | 1.5 |