python绘制方程式为y=cos(2πx)e⁻ˣ,x∈[0,5]的曲线图。
时间: 2024-03-06 11:52:02 浏览: 170
利用python绘制数据曲线图的实现
可以使用Python中的matplotlib库来绘制这个方程的曲线图。以下是实现代码:
```python
import numpy as np
import matplotlib.pyplot as plt
# 定义函数
def func(x):
return np.cos(2 * np.pi * x) * np.exp(-x)
# 生成x轴数据
x = np.linspace(0, 5, 500)
# 计算y轴数据
y = func(x)
# 绘图
plt.plot(x, y)
# 添加标题和坐标轴标签
plt.title("y = cos(2πx)e⁻ˣ")
plt.xlabel("x")
plt.ylabel("y")
# 显示图像
plt.show()
```
运行代码后,会弹出一个窗口显示绘制的曲线图。
阅读全文