Python Matplotlib:动态更新图-先验未知的数组长度

Python Matplotlib:动态更新图-先验未知的数组长度,第1张

Python Matplotlib:动态更新图-先验未知的数组长度

只需在循环之外使行对象具有空数据即可:

line1, = ax.plot([], [],'-k',label='black')line2, = ax.plot([], [],'-r',label='red')ax.legend()for i in range(0, SIZE):  A.append(R1 * i * np.sin(i))  B.append(R2 * i * np.cos(i))  line1.set_ydata(A)  line1.set_xdata(range(len(A)))  line2.set_ydata(B)  line2.set_xdata(range(len(B)))  ax.relim()  ax.autoscale_view()  plt.draw()

可能会更聪明地更新自己的

xdata

有关更完整的示例,请参见此处和完整的动画示例库。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5646314.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存