2020
09-27
09-27
使用matplotlib动态刷新指定曲线实例
我就废话不多说啦,还是直接看代码吧!frommatplotlibimportpyplotaspltimportnumpyasnpx=np.linspace(1,100,20)y=x*2+3fig=plt.figure()ax=fig.add_subplot(1,1,1)ax.scatter(x,y)plt.ion()foriinrange(10):y=x*i*0.1+itry:ax.lines.remove(lines[0])exceptException:passlines=ax.plot(x,y)plt.pause(0.1)补充知识:用Python的matplotlib库动态显示不断增长的数据"""CreatedonMonD...
继续阅读 >