在Matplotlib中實現(xiàn)動畫可以使用FuncAnimation
函數(shù)。下面是一個簡單的示例:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
# 創(chuàng)建畫布和子圖
fig, ax = plt.subplots()
xdata, ydata = [], []
ln, = ax.plot([], [], 'r-', animated=False)
def init():
ax.set_xlim(0, 2*np.pi)
ax.set_ylim(-1, 1)
return ln,
def update(frame):
xdata.append(frame)
ydata.append(np.sin(frame))
ln.set_data(xdata, ydata)
return ln,
ani = FuncAnimation(fig, update, frames=np.linspace(0, 2*np.pi, 100),
init_func=init, blit=True)
plt.show()
在上面的示例中,我們創(chuàng)建了一個正弦波的動畫,通過不斷更新數(shù)據(jù)和繪制曲線實現(xiàn)動畫效果。您可以根據(jù)自己的需求和數(shù)據(jù)來修改示例代碼。