Python/ref cmath sinh

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

<languages />

Python cmath.sinh()方法

❮cmath方法

查找复数的双曲正弦值:

    #importing cmath for complex number operations 
import cmath

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

定义和用法

The cmath.sinh() 方法返回复数的双曲正弦值。

句法

    cmath.sinh(x)
  

参数值

参数 描述
x 需要。找到一个双曲正弦的数字

技术细节

返回值: A

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

Python版本: 1.5

❮cmath方法