python math.cosh()
函数用于求某个数值的双曲余弦值。
在数学中cosh(x)=(e^x+e^(-x))/2,相当于python的math.cosh()函数求的是这个公式的值。
语法
语法如下:import math #导入math模块
math.cosh( x )
参数
- x: 指定要求的数值
返回值
返回某个数值的双曲余弦值。
程序示例
#!/usr/bin/python
# coding=utf-8
import math
#双曲余弦值。
r1 = math.cosh(0)
r2 = math.cosh(1)
r3 = math.cosh(2)
#输出
print("cosh(0)=", r1)
print("cosh(1)=", r2)
print("cosh(2)=", r3)
程序运行结果:
cosh(0)= 1.0
cosh(1)= 1.5430806348152437
cosh(2)= 3.7621956910836314
cosh(1)= 1.5430806348152437
cosh(2)= 3.7621956910836314