Python/ref cmath asinh

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

<languages />

Python cmath.asinh()方法

❮cmath方法

查找复数的双曲反正弦:

    #import cmath for complex number operations 
import cmath

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

定义和用法

The cmath.asinh() 方法返回数字的反双曲正弦值。

主要有两个分支削减:

  1. 从1j沿虚轴延伸到向右的∞j
  2. 沿着虚轴从-1j延伸到向左的-∞j

句法

    cmath.asinh(x)
  

参数值

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

技术细节

返回值: A

complex 值,表示复数的反双曲正弦值

更新日志: 2.6-根据C99标准选择分支切口

❮cmath方法