- 积分
- 4300
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-4-18
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 Bubble_liu 于 2018-4-18 17:14 编辑
意外发现一个自己解释不了的好玩的事情。
首先贴我的原程序:
subplot(2,2,1)%tu1+tu_r,10、20、50的体积含水率和日降水
plotyy(tu1(:,2),tu1(:,3:5),tu_r(:,1),tu_r(:,2),'plot','bar');
datetick('x','yy/mm/dd','keepticks');
axis tight
%ylim([0 1.2]);
xlabel('时间');
title({[char(p_text((j+2),3)),':2013/2/21-2018/3/31土壤体积含水率']});
legend('10cm','20cm','50cm','Location','EastOutside');
grid on
和
%subplot(2,2,1)%tu1+tu_r,10、20、50的体积含水率和日降水
plotyy(tu1(:,2),tu1(:,3:5),tu_r(:,1),tu_r(:,2),'plot','bar');
datetick('x','yy/mm/dd','keepticks');
axis tight
%ylim([0 1.2]);
xlabel('时间');
title({[char(p_text((j+2),3)),':2013/2/21-2018/3/31土壤体积含水率']});
legend('10cm','20cm','50cm','Location','EastOutside');
grid on
两者出的图分别是:
所以,你看,他们蓝色树状的,代表右边轴的数据,在图上,居然是不一样的。
而程序,我只是带上和不带上subplot的区别。
求解
|
-
plot的图
-
加上subplot之后
|