如何在 Matplotlib 中绘制正弦曲线动画?
要绘制带动画效果的正弦曲线,我们可以采取以下步骤:
- 设置图形大小并调整子图之间的、周围的填充。
- 创建一个新图形或激活一个现有的图形。
- 向当前图形中添加一个坐标轴,并将其设为当前坐标轴。
- 使用空列表绘制一条线。
- 要初始化该线,传递空列表。
- 要制作正弦曲线动画,更新正弦曲线值并返回线实例。
- 要显示图形,使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt from matplotlib import animation plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = plt.axes(xlim=(0, 2), ylim=(-2, 2)) line, = ax.plot([], [], lw=2) def init(): line.set_data([], []) return line, def animate(i): x = np.linspace(0, 2, 1000) y = np.sin(2 * np.pi * (x - 0.01 * i)) line.set_data(x, y) return line, anim = animation.FuncAnimation(fig, animate, init_func=init, frames=200, interval=20, blit=True) plt.show()
输出
广告