导入库,准备基本数据:
%matplotlib notebook
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
# 0. 设置中文黑体
plt.rcParams["font.sans-serif"] = ["SimHei"]
plt.rcParams["axes.unicode_minus"] = False
# 1. 准备正弦曲线数据
x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)
# 2. 创建坐标系
fig = plt.figure(tight_layout=True) # fig表示动画所在画布
ax = fig.add_subplot(111)
# 3. 绘制正弦曲线
ax.plot(x, y)
绘制正弦曲线,制作一个圆点沿曲线运动的动画并显示圆点的坐标位置;
# 4. 动画设计
def update_points(num):
point_ani.set_data(x[num], y[num]) # num代表当前动画第几帧
text_pt.set_text("x=%.3f, y=%.3f"%(x[num], y[num]))
return point_ani,text_pt,
x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)
plt.plot(x,y)
point_ani, = plt.plot(x[0], y[0], "ro")
text_pt = plt.text(4, 0.8, '', fontsize=16)
# 开始制作动画
ani = animation.FuncAnimation(fig, update_points, np.arange(0, 100), interval=100, blit=True)
update_points:更新动画的函数
np.arange(0, 100):动画帧数
interval:更新动画的频率,1秒=1000毫秒
blit:表示是否更新所有点,默认为False
# 5.将动画保存为gif图片(用于上传博客)
ani.save("pratice7.3.gif", writer='pillow')
# 6.展示图表
plt.show()
运行结果如下: