您可以使用subplot
并删除顶部的x轴刻度标签,例如:
x=rand(1,100);
subplot(2,1,1);
plot(1./x);
ylabel('Label 1')
set(gca,'XTickLabel',[])
subplot(2,1,2);
plot(x)
ylabel('Label 2')
xlabel('x Label')
如果您希望绘图彼此更接近,可以使用其中一个FEX文件,例如subplot_tight
等(例如this one或this one)
或者您可以使用axes
...