Python/ref cmath acosh

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

<languages />

Python cmath.acosh()方法

❮cmath方法

查找复数的反双曲反余弦值:

    #import cmath for complex number operations 
import cmath

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

定义和用法

The cmath.acosh() 方法返回复数的反双曲余弦值。

有一个分支剪切:

  1. 从1沿实轴向左延伸至-∞,从上方连续

句法

    cmath.acosh(x)
  

参数值

参数 描述
x 需要。查找反双曲余弦的数字

技术细节

返回值: A

complex 值,表示数字的反双曲反余弦值

Python版本: 1.5

❮cmath方法