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 轴不统一,怎么才是设置成统一的刻度。
1
dbw9580 2018-04-18 15:24:39 +08:00 via Android
xlim ylim
|
3
hastelloy 2018-04-18 17:30:11 +08:00 via Android
哪里用 matlab 了,
画图基本照着 matplotlib 官方文档 gallary 里面的例子依葫芦画瓢就可以了 |
4
guoli100 2018-04-18 18:14:57 +08:00
链接是我之前自己总结的 matplotlib 的常用方法,不过建议你参考 matplotlib 官方文档。
https://gist.github.com/guoli100/ef60abf8eaed5569cdc4682737cb8fe3 |
5
yanyuechuixue 2018-04-18 21:36:47 +08:00 via Android
看文档去吧少年…
把 Label 隐藏掉,然后 xlim xlim |