Python math.cosh() 方法
例如:
求不同数的双曲余弦:
# Import math Library import math # 返回不同数字的双曲余弦 print (math.cosh(1)) print (math.cosh(8.90)) print (math.cosh(0)) print (math.cosh(1.52))
1、定义和用法
math.cosh()
方法返回一个数字的双曲余弦(等价于(exp(number) + exp(-number)) / 2)。
2、调用语法
math.cosh(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 查找双曲余弦的数字。 如果该值不是数字, 则返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 1.4 |