matplotlib.animation
是matplotlib
的动态图库,本文记录使用方法。
用法介绍 {#用法介绍}
-
matplotlib
是 Python 中常用的绘图工具,其中的animation
可以绘制动画
语法 {#语法}
-
使用函数:
matplotlib.animation.FuncAnimation
matplotlib.animation.FuncAnimation(fig, func, frames=None, init_func=None, fargs=None, save_count=None, *, cache_frame_data=True, **kwargs)
- 动画效果:
参考资料 {#参考资料}
- https://matplotlib.org/stable/api/_as_gen/matplotlib.animation.FuncAnimation.html#matplotlib.animation.FuncAnimation
- https://matplotlib.org/stable/gallery/index.html
- https://www.cnblogs.com/endlesscoding/p/10308111.html
文章链接:
https://www.zywvvd.com/notes/coding/python/matplotlib/animation/animation/