Matlab:堆叠各种图

时间:2012-08-01 11:10:51

标签: plot matlab

我对以下图表有疑问:

enter image description here 基本上,我们在这里有两个具有相同x轴的子图。我想要 现在节省空间,而不是有两个带有两个x-axix标签的子图,我愿意 喜欢腾出它们之间的空间并将它们堆叠在一起。

有没有简单的方法呢?

非常感谢! 帕特里克

%% Data
t  = 0:100;
f1 = 0.3;
f2 = 0.07;
u1 = sin(f1*t);   cu1 = 'r'; %red
u2 = cos(f2*t);   cu2 = 'b'; %blue
v1 = 5*u1.^2;     cv1 = 'm'; %magenta
v2 = 5*u2.^2;     cv2 = 'c'; %cyan

figure;
h(1) = subplot(2,1,1); % upper plot
plot(t,u1,'Color',cu1,'DisplayName','u1'); hold on;
plot(t,u2,'Color',cu2,'DisplayName','u2'); hold off;

xlabel('Time t [s]');
ylabel('u [some unit]');
legend(gca,'show');

h(2) = subplot(2,1,2); % lower plot
plot(t,v1,'Color',cv1,'DisplayName','v1'); hold on;
plot(t,v2,'Color',cv2,'DisplayName','v2'); hold off;

xlabel('Time t [s]');
ylabel('v [some unit^2]');
legend('show');

linkaxes(h,'x'); % link the axes in x direction (just for convenience)

1 个答案:

答案 0 :(得分:11)

删除上图的xticks:

set(h(1),'xticklabel',[]);

并删除xlabel(删除或注释代码中的那一行)

现在通过改变他们的位置将两者拉近:

pos=get(h,'position');
bottom=pos{2}(2);
top=pos{1}(2)+pos{1}(4);
plotspace=top-bottom;
pos{2}(4)=plotspace/2;
pos{1}(4)=plotspace/2;
pos{1}(2)=bottom+plotspace/2;

set(h(1),'position',pos{1});
set(h(2),'position',pos{2});

然后你会得到

enter image description here

y轴标签开始重叠,因此您可能还想使用

调整这些标签
set(h(1),'ytick',[-0.5 0 0.5]);
例如

,或者在右侧放置一个y轴:

set(h(2),'YAxisLocation','right')