所以我是python的新手,并且一直试图用matplotlib中的动画模拟地球和月球的运动,动画效果很好,但它实际上并没有结束,是否有一种简单的方法可以做到这一点?代码如下:
def animate(i):
orbits()
ax1.clear()
plt.axis('equal')
ax1.plot(xMlist, yMlist)
ax2.plot(xElist, yElist)
ani = animation.FuncAnimation(fig, animate,frames=10, interval=1)
plt.show()
就像我说的那样,对于python来说是相当新的所以我真的很抱歉,如果这是一个简单的答案,但我到处看,并没有尝试过的方法似乎没有工作,例如设置帧数没有改变任何东西所以我不知所措真。
答案 0 :(得分:1)
您可以将repeat参数设置为false: https://matplotlib.org/api/_as_gen/matplotlib.animation.FuncAnimation.html
ani = animation.FuncAnimation(fig, animate,frames=10, interval=1,repeat=False)
所以当你没有帧时,它会停止。