当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cmath.sin()用法及代码示例


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)



相关用法


注:本文由纯净天空筛选整理自aman neekhara大神的英文原创作品 Python – cmath.sin() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。