如何在Matplotlib中将参数传递给animation.FuncAnimation()?


要在Python的Matplotlib中为等值线图向animation.FuncAnimation()传递参数,我们可以执行以下步骤 -

  • 创建一个10☓10维度的随机数。
  • 创建一个数字和一系列子图,使用subplots()方法。
  • 使用 FuncAnimation()类反复调用函数*func*来制作动画
  • 要在函数中更新contour值,我们可以定义一个方法animate(),该方法可以用在FuncAnimation()类中。
  • 使用show()方法显示数字。

示例

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

data = np.random.randn(800).reshape(10, 10, 8)
fig, ax = plt.subplots()

def animate(i):
   ax.clear()
   ax.contourf(data[:, :, i])

ani = animation.FuncAnimation(fig, animate, 5, interval=50, blit=False)

plt.show()

输出

更新于: 2021年7月8日

690次浏览量

开启你的 职业

完成课程获得认证

开始
广告