垂直子图的单个配色条

时间:2019-02-18 03:40:49

标签: matlab matlab-figure

我想使下面的MATLAB图具有沿两个子图延伸的单个颜色条。

enter image description here

这样的事情(通过图形编辑器手动完成):

enter image description here

注意:这与所提出的问题here不同。

谢谢!

1 个答案:

答案 0 :(得分:4)

我终于找到了解决方案。可以在代码中手动定位颜色条,但我想使所有内容保持原始间距。我的最终解决方案概述如下。

步骤1 。在底部子图上使用单个颜色条创建图。

enter image description here

figure('color', 'white', 'DefaultAxesFontSize', fontSize, 'pos', posVec)
ax(1) = subplot2(2,1,1);
pcolor(x2d, t2d, dataMat1)
shading interp
ylim([0 10])
xlim([-0.3 0.3])
xticklabels({})
set(gca, 'clim', [-20 0])
colormap(flipud(gray))
set(gca,'layer','top')
axis ij
ax(2) = subplot2(2,1,2);
pcolor(x2d, t2d, dataMat2);
xlabel('x')
ylabel('y')
shading interp
ylim([0 10])
xlim([-0.3 0.3])
set(gca, 'clim', [-20 0])
yticklabels({})
cbar = colorbar;
cbar.Label.String = 'Normalized Unit';
colormap(flipud(gray))
set(gca,'layer','top')
axis ij

步骤2。保存两个子图的位置矢量和颜色栏。

pos1 = ax(1).Position; % Position vector = [x y width height]
pos2 = ax(2).Position;
pos3 = cbar.Position;

第3步。更新颜色栏的位置,以扩展到顶部子图的顶部。

cbar.Position = [pos3(1:3) (pos1(2)-pos3(2))+pos1(4)];

第4步。更新顶部子图的宽度以容纳颜色栏。

ax(1).Position = [pos1(1) pos1(2) pos2(3) pos1(4)];

第5步。更新底部子图的宽度以容纳颜色栏。

ax(2).Position = pos2;

等等,我认为底部子图已经容纳了颜色条吗?实际上,当手动设置颜色条的位置(步骤3)时,相应的轴不再相应缩放。来自documentation

  

如果指定Position属性,则MATLAB会将Location属性更改为“ manual”。当Location属性为“ manual”时,关联的轴不会调整大小以适应颜色栏。

最终结果:

enter image description here