我有一个代码,可以使用drawow实时绘制放电模式下电池的电压与时间的关系,但是过了一会儿,时间标签的刻度变得太接近了,以至于没有人可以阅读它如何设置自动比例因子像x 轴的plt.autoscale这样时间就会分开并在每次 thnks 时更新
def CreatePlot():
plt.subplot(2,2,1)
plt.grid(True)
plt.ylabel('Voltage')
plt.plot(Time,Voltage_0,'g-', label='V1')
plt.autoscale()
时间
和
电压_0
是随着时间追加的列表