Python cmath.cosh() 方法
实例
求复数的双曲余弦:
#import cmath for complex number operations
import cmath
#find
the hyperbolic cosine of a complex number
print (cmath.cosh(2 + 3j))
亲自试一试 »
定义和用法
cmath.cosh()
方法返回复数的双曲余弦值。
语法
cmath.cosh(x)
参数值
参数 | 描述 |
---|---|
x | 必需。求双曲余弦的数 |
技术细节
返回值: | 一个complex 复数值,表示复数的双曲余弦 |
---|---|
Python 版本: | 1.5 |