使用 Matplotlib 与子图和 ArtistAnimation 的动画
如需使用 Matplotlib 和子图与 ArtistAnimation 创建动画,我们可以执行以下步骤:
- 设置图形尺寸,调整子图之间和周围的填充。
- 创建图形和一组子图。
- 创建一个用户自定义函数 Init 以绘制一个清晰的帧。
- 使用 FuncAnimation 通过反复调用函数 *func* 创建动画。
- 定义一个 animate 函数以更新 FuncArtist 类中的数据点。
- 要显示图形,请使用 show() 方法。
示例
import numpy as np import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig, ax = plt.subplots() xdata, ydata = [], [] ln, = plt.plot([], [], 'r*') def init(): ax.set_xlim(0, 100) ax.set_ylim(-1, 1) return ln, def animate(frame): xdata.append(frame) ydata.append(np.sin(frame)) ln.set_data(xdata, ydata) return ln, ani = FuncAnimation(fig, animate, init_func=init, blit=True, frames=100) plt.show()
输出
广告