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