Python Math cos() 函数
Python Math cos() 返回x的弧度的余弦值。
Python Math cos() 语法
以下是 cos() 方法的语法:
import math
math.cos(x)
注意:cos()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。
Python Math cos() 参数
- x : 一个数值。
Python Math cos() 返回值
返回x的弧度的余弦值,-1 到 1 之间。
Python Math cos() 示例1
以下展示了使用 cos() 方法的实例:
#!/usr/bin/python3
import math
print ("cos(33) : ", math.cos(33))
print ("cos(-33) : ", math.cos(-33))
print ("cos(0) : ", math.cos(0))
print ("cos(math.pi) : ", math.cos(math.pi))
print ("cos(3*math.pi) : ", math.cos(3*math.pi))
输出:
Python Math cos() 示例2
Python程序显示cos()函数的图形表示法.
import math
import numpy as np
import matplotlib.pyplot as plt
in_array = np.linspace(-(2 * np.pi), 2 * np.pi, 20)
out_array = []
for i in range(len(in_array)):
out_array.append(math.cos(in_array[i]))
i += 1
print("in_array : ", in_array)
print("\nout_array : ", out_array)
plt.plot(in_array, out_array, color = 'red', marker = "o")
plt.title("math.cos() in apidemos.com")
plt.xlabel("X")
plt.ylabel("Y")
plt.show()
输出:
deepinout@ubuntu:~/apidemos.com$ python3 demos.py
in_array : [-6.28318531 -5.62179738 -4.96040945 -4.29902153 -3.6376336 -2.97624567
-2.31485774 -1.65346982 -0.99208189 -0.33069396 0.33069396 0.99208189
1.65346982 2.31485774 2.97624567 3.6376336 4.29902153 4.96040945
5.62179738 6.28318531]
out_array : [1.0, 0.7891405093963934, 0.2454854871407988, -0.40169542465296987, -0.8794737512064891, -0.9863613034027223, -0.6772815716257412, -0.08257934547233249, 0.5469481581224268, 0.9458172417006346, 0.9458172417006346, 0.5469481581224268, -0.0825793454723316, -0.6772815716257405, -0.9863613034027223, -0.8794737512064893, -0.40169542465296987, 0.2454854871407988, 0.7891405093963934, 1.0]