python画出0-2π的sinx和cosx图像
时间: 2024-03-05 21:52:24 浏览: 186
GUI编程实例简析
可以使用Python中的Matplotlib库来画出0-2π的sinx和cosx图像。下面是示例代码:
```python
import numpy as np
import matplotlib.pyplot as plt
# 生成0-2π之间的100个等间距点
x = np.linspace(0, 2*np.pi, 100)
# 计算sinx和cosx的值
y_sin = np.sin(x)
y_cos = np.cos(x)
# 绘制sinx和cosx的图像
plt.plot(x, y_sin, label='sin(x)')
plt.plot(x, y_cos, label='cos(x)')
# 设置图像标题和坐标轴标签
plt.title('Sin(x) and Cos(x) Graph')
plt.xlabel('x')
plt.ylabel('y')
# 显示图例和图像
plt.legend()
plt.show()
```
执行以上代码,即可得到0-2π的sinx和cosx图像。
阅读全文