利用numpy和matplotlib库绘制三角函数
时间: 2023-07-12 09:40:18 浏览: 113
三角函数绘制程序
可以使用NumPy和Matplotlib库来绘制三角函数的图像。下面是一个例子:
```python
import numpy as np
import matplotlib.pyplot as plt
# 生成x轴的数据
x = np.linspace(-2 * np.pi, 2 * np.pi, 100)
# 生成y轴的数据
y_sin = np.sin(x)
y_cos = np.cos(x)
y_tan = np.tan(x)
# 绘制三角函数图像
plt.plot(x, y_sin, label='sin(x)')
plt.plot(x, y_cos, label='cos(x)')
plt.plot(x, y_tan, label='tan(x)')
# 设置图像标题和坐标轴标签
plt.title('Trigonometric Functions')
plt.xlabel('x')
plt.ylabel('y')
# 显示图例
plt.legend()
# 显示图像
plt.show()
```
这个例子中,我们生成了x轴的数据,并计算出sin(x)、cos(x)和tan(x)的y轴数据。然后使用Matplotlib库中的plot函数分别绘制三角函数的图像,并设置图像标题和坐标轴标签。最后使用legend函数显示图例,使用show函数显示图像。
阅读全文