📜  Python – cmath.cosh()函数

📅  最后修改于: 2022-05-13 01:55:39.701000             🧑  作者: Mango

Python – cmath.cosh()函数

cMath 模块包含许多用于复数数学运算的函数。 cmath.cosh()函数返回复数的双曲余弦值。此函数中传递的值可以是int、float复数

下面的例子说明了上述函数的使用:

示例 #1:在这个示例中,我们可以通过使用cmath 看到这一点。 cosh ()方法,我们可以得到双曲余弦的值 通过将任何值传递给它。

Python3
# Python code to implement
# the cosh()function
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# using cmath.cosh() method 
val = cmath.cosh(3) 
    
print(val)


Python3
# Python code to implement
# the cosh()function
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# using cmath.cosh() method 
val = cmath.cosh(2 + 5j) 
    
print(val)


输出:

(10.067661995777765+0j)

示例 2:

Python3

# Python code to implement
# the cosh()function
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# using cmath.cosh() method 
val = cmath.cosh(2 + 5j) 
    
print(val)

输出:

(2.37054853731792+1.184231684275022j)