Python/ref cmath acos

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python cmath.acos()方法

❮cmath方法

查找复数的反余弦:

    #import cmath for complex number operations 
import cmath

#find 
    the arc cosine of a complex number
print (cmath.acos(2+3j)) 

定义和用法

The cmath.acos() 方法返回复数的反余弦。

有两个分支切口:

  1. 沿实轴从1右延伸到∞
  2. 从-1沿实轴向左延伸到-∞。

句法

    cmath.acos(x)
  

参数值

参数 描述
x 需要。找到一个数字的反余弦

技术细节

返回值: A

complex 值,代表数字的反余弦。如果返回值可以表示为实数,则返回值的虚部为0

Python版本: 1.5

❮cmath方法