地球人!
我正在尝试使用FuncAnimation
模块进行动画,但我的代码只产生一帧然后停止。似乎它没有意识到他需要更新什么。你能帮我解决问题吗?
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
x = np.linspace(0,2*np.pi,100)
def animate(i):
PLOT.set_data(x[i], np.sin(x[i]))
print("test")
return PLOT,
fig = plt.figure()
sub = fig.add_subplot(111, xlim=(x[0], x[-1]), ylim=(-1, 1))
PLOT, = sub.plot([],[])
animation.FuncAnimation(fig, animate, frames=len(x), interval=10, blit=True)
plt.show()
答案 0 :(得分:6)
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
x = np.linspace(0,2*np.pi,100)
fig = plt.figure()
sub = fig.add_subplot(111, xlim=(x[0], x[-1]), ylim=(-1, 1))
PLOT, = sub.plot([],[])
def animate(i):
PLOT.set_data(x[:i], np.sin(x[:i]))
# print("test")
return PLOT,
ani = animation.FuncAnimation(fig, animate, frames=len(x), interval=10, blit=True)
plt.show()
您需要保持对动画对象的引用,否则会收集垃圾并且计时器消失。
有an open issue将动画的硬参考附加到基础Figure
对象。
如上所述,您的代码只能绘制一个不可见的单点,我稍微改了一下以绘制直到当前索引