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