如何在放置颜色条后保持子图大小不变

时间:2012-05-18 08:33:37

标签: matlab

让我们说我们有一个2乘2的子图,我们在里面绘制一些图形如下:

subplot(1,2,1)
surf(peaks(20))

subplot(1,2,2)
surf(peaks(20))

enter image description here

然后我们想要一个颜色条:

colorbar

enter image description here

我不希望正确的数字在结果中吱吱作响。我们怎样才能将颜色条从最右边的图中放在一行子图中并保持它们的大小不变?

注意:实际上,我需要它来绘制颜色条常见的图像,我想把它放在右边。为简单起见,我使用了这个玩具示例。

2 个答案:

答案 0 :(得分:13)

你可以只提取第一个图的位置并在第二个图上使用。重新缩放时,MATLAB会自动将颜色条移动到右侧。

f1=figure(1);clf;
s1=subplot(1,2,1);
surf(peaks(20));

s2=subplot(1,2,2);
surf(peaks(20));
hb = colorbar('location','eastoutside');

%% # Solution:
s1Pos = get(s1,'position');
s2Pos = get(s2,'position');
s2Pos(3:4) = [s1Pos(3:4)];
set(s2,'position',s2Pos);



%% # Alternative method. Brute force placement
set(s1,'Units','normalized', 'position', [0.1 0.2 0.3 0.6]);
set(s2,'Units','normalized', 'position', [0.5 0.2 0.3 0.6]);
set(hb,'Units','normalized', 'position', [0.9 0.2 0.05 0.6]);

enter image description here

答案 1 :(得分:2)

这正是我所寻找的。实施Vidar's automatic solution后,我想出了一个简化。在添加颜色条之前获取最右轴的位置,然后将挤压位置重置为原始位置:

f1=figure(1);clf;
s1=subplot(1,2,1);
surf(peaks(20));

s2=subplot(1,2,2);
surf(peaks(20));
s2Pos = get(s2,'position');

hb = colorbar('location','eastoutside');
set(s2,'position',s2Pos);