我正在尝试使用matplotlib动画一个numpy数组:
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
arr = []
for i in range(100):
c = np.random.rand(10, 10)
arr.append(c)
plt.imshow(arr[45])
我不知道我应该如何动画一个数组,像这样:https://matplotlib.org/examples/animation/dynamic_image.html
1条答案
按热度按时间vhipe2zx1#
“谢谢,比我想象的要简单。