用python先画正弦函数再画余弦函数
时间: 2024-05-05 13:18:46 浏览: 118
Python绘制正余弦函数图像的方法
当然可以,你可以使用Python中的math库和matplotlib库来实现这个需求。下面是一个简单的示例代码:
```python
import math
import matplotlib.pyplot as plt
# 生成一组 x 坐标数据
x = [i / 10 for i in range(-50, 51)]
# 计算正弦函数和余弦函数的 y 坐标数据
y_sin = [math.sin(xi) for xi in x]
y_cos = [math.cos(xi) for xi in x]
# 绘制正弦函数和余弦函数的图像
plt.plot(x, y_sin, label='sin')
plt.plot(x, y_cos, label='cos')
# 添加标题和图例
plt.title('Sine and Cosine Functions')
plt.legend()
# 显示图像
plt.show()
```
希望这个代码可以帮助你实现你的需求!
阅读全文