Python math.cosh() 方法

实例

求不同数字的双曲余弦:

  1. # Import math Library
  2. import math
  3. # Return the hyperbolic cosine of different numbers
  4. print (math.cosh(1))
  5. print (math.cosh(8.90))
  6. print (math.cosh(0))
  7. print (math.cosh(1.52))

定义与用法

math.cosh() 方法返回数字的双曲余弦(相当于(exp(number)+exp(-number))/2)。


语法

  1. math.cosh(x)

参数值

参数描述
x必填。求其双曲余弦的数字。如果该值不是数字,则返回 TypeError

技术细节

返回值:一个 float 值,表示数字的双曲余弦
Python 版本:1.4

分类导航