Python math.cosh() 方法
实例
求不同数的双曲余弦:
# 导入 math 库
import math
# 返回不同数字的双曲余弦
print (math.cosh(1))
print (math.cosh(8.90))
print (math.cosh(0))
print (math.cosh(1.52))
亲自试一试 »
定义和用法
math.cosh()
方法返回一个数的双曲余弦值(等价于 (exp(number) + exp(-number)) / 2)。
语法
math.cosh(x)
参数值
参数 | 描述 |
---|---|
x | 必需。求双曲余弦的数。 如果 value 不是数字,则返回 TypeError |
技术细节
返回值: | float 值,表示数字的双曲余弦 |
---|---|
Python 版本: | 1.4 |