Python cmath.cos() 方法

实例

求复数的余弦值:

  1. #导入复数运算的 cmath 库
  2. import cmath
  3. #求复数的余弦值
  4. print (cmath.cos(2 + 3j))

定义与用法

cmath.cos() 方法返回复数的余弦。


语法

  1. cmath.cos(x)

参数值

参数描述
x必填。求余弦的数字

技术细节

返回值:一个 complex 值,表示复数的余弦
Python 版本:1.5

分类导航