欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python 第三方模块 Matplotlib模块 绘制动图

程序员文章站 2024-01-17 21:58:04
...

一.Animation子模块概述

参见:https://matplotlib.org/api/animation_api.html

1.简介:

animation是matplotlib模块中用于绘制动态图的子模块.该模块中最重要的是FuncAnimation类,还包含其他动图类和帮助类

2.导入:

from matplotlib import animation

二.FuncAnimation类