from numpy.random import randn fig = plt.figure();ax = fig.add_subplot(1,1,1)
ax.plot(a,'k',label = 'PESQ_sender') ax.plot(b,'g',label = 'MOSLQO_sender') ax.plot(c,'r',label = 'PESQ_receiver') ax.plot(d,'y',label = 'MOSLQO_receiver')
这样写的代码 a,b,c,d 是四个列表 在一张图上画,执行结果 Y 轴不统一,怎么才是设置成统一的刻度。