cmath是用于复数数学的python 内置模块。 cmath模块具有方法sinh(),该方法返回传递给它的复数的双曲正弦值。
用法: cmath.sinh(Z)
参数:它仅需要一个参数,即需要为其计算双曲正弦的数字。
返回:返回一个复数,它是传递的数字的双曲正弦值。
范例1:
Python3
# Import the Library
import cmath
# Printing the result
print (cmath.sinh(5 + 3j))
输出:
(-73.46062169567368+10.472508533940392j)
范例2:在此示例中,传递了实数,但返回的结果仍然是复数。
Python3
# Import the Library
import cmath
# Printing the result
print (cmath.sinh(1))
输出:
(1.1752011936438014+0j)
范例3:在此示例中,没有传递参数,在这种情况下将抛出TypeError
Python3
# Import the Library
import cmath
# Printing the result
print (cmath.sinh())
输出:
TypeError:sinh() takes exactly one argument (0 given)
相关用法
- Python Wand function()用法及代码示例
- Python int()用法及代码示例
- Python id()用法及代码示例
- Python cmp()用法及代码示例
- Python oct()用法及代码示例
- Python str()用法及代码示例
- Python map()用法及代码示例
- Python now()用法及代码示例
- Python dir()用法及代码示例
- Python ord()用法及代码示例
- Python tell()用法及代码示例
- Python sum()用法及代码示例
- Python hex()用法及代码示例
- Python Wand arc()用法及代码示例
- Python locals()用法及代码示例
- Python join()用法及代码示例
- Python Union()用法及代码示例
注:本文由纯净天空筛选整理自aman neekhara大神的英文原创作品 Python – cmath.sinh() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。