新手求教。 Python 用 matlab 画图怎么同一坐标轴

2018-04-18 15:15:53 +08:00
 LeIYc

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 轴不统一,怎么才是设置成统一的刻度。

3084 次点击
所在节点    Python
5 条回复
dbw9580
2018-04-18 15:24:39 +08:00
xlim ylim
LeIYc
2018-04-18 16:09:19 +08:00
@dbw9580 里面的参数是怎么回事啊?怎么感觉完全没有规律
hastelloy
2018-04-18 17:30:11 +08:00
哪里用 matlab 了,
画图基本照着 matplotlib 官方文档 gallary 里面的例子依葫芦画瓢就可以了
guoli100
2018-04-18 18:14:57 +08:00
链接是我之前自己总结的 matplotlib 的常用方法,不过建议你参考 matplotlib 官方文档。

https://gist.github.com/guoli100/ef60abf8eaed5569cdc4682737cb8fe3
yanyuechuixue
2018-04-18 21:36:47 +08:00
看文档去吧少年…

把 Label 隐藏掉,然后 xlim xlim

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/447821

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX