Last active
September 13, 2018 18:40
-
-
Save SkalskiP/25cf12c299d6bf450e8f84d8255ee33e to your computer and use it in GitHub Desktop.
Saving animations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Animation creation | |
| anim = FuncAnimation(fig, update, | |
| frames=np.arange(0, int(STEPS/STEPS_PER_FRAME)), interval=40) | |
| # Saving animation | |
| anim.save('lorenz_attractor.gif', dpi=80, writer='imagemagick') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment