Second subplot disappearing

≡放荡痞女 提交于 2019-11-29 10:37:34

So it is probably happening because subplot deletes a plot when it is overlapping with the previous plot. I suspect that happens because of conflicting positions values between the subplot tile number (i.e. subplot(2,1,1) etc) that has its own default position, and the position you entered.

So instead of using subplot(m,l,p, 'position', [ a b c d]), you can solve this issue by using subplot just with the position info as follows:

subplot('position',  [0.1, 0.4, 0.85, 0.45])
plot(1:10);
subplot('position', [0.1, 0.1, 0.85, 0.15])
plot(1:10);

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!