I've had problems with code running speed slowing down. This time, it is simple enough to be put up for investiagtion. I'm just displaying a bunch of images.
images = np.random.rand(200, 150, 150)
for index, animage in enumerate(images):
plt.imshow(animage)
plt.title(str(index))
plt.pause(0.05)
It starts very fast, and then is slows to crawling speed. Why is that?
PS: I do realize that animation is the correct way of doing it.