要導出matplotlib動態圖,可以使用以下方法:
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
# 創建圖形和動畫函數
fig, ax = plt.subplots()
def animate(i):
ax.cla() # 清除當前軸上的內容
ax.plot(x, y[i]) # 繪制新的幀
# 創建動畫對象
ani = FuncAnimation(fig, animate, frames=len(y), interval=200)
# 保存為動態圖像文件(例如gif)
ani.save('animation.gif', writer='pillow')
import matplotlib.pyplot as plt
from matplotlib.animation import Animation, FFMpegWriter
# 創建圖形和動畫函數
fig, ax = plt.subplots()
def animate(i):
ax.cla() # 清除當前軸上的內容
ax.plot(x, y[i]) # 繪制新的幀
# 創建動畫對象
ani = Animation(fig, animate, frames=len(y), interval=200)
writer = FFMpegWriter(fps=10) # 創建寫入器
# 保存為動態圖像文件(例如mp4)
ani.save('animation.mp4', writer=writer)
這些方法可以將matplotlib動態圖保存為不同格式的文件,如gif、mp4等。