Advertisement
peth31

Animación

Jul 19th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. fig = plt.figure(figsize=(10,5))
  2. def animate(i):
  3.  
  4.     plt.contourf(viento[i,:,:])
  5. #     plt.show()
  6.  
  7. ani = animation.FuncAnimation(fig,animate,24,interval=70,blit=False)
  8. ani.save('katrina.gif')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement