3

这是我面临的问题。我有代码,它构建了一些条形图。

为了更好地比较它们,我需要它们都具有相同的比例。查看文档栏,我无法找到如何指定条形图具有特定的最大高度。

因此,就我而言,例如,我有以下代码:

c = [0 0 12 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0];
e = [0 2 5 6 5 2 0 0 0 0 0 0 0 0 0 0 0 0 0];
f = [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19];
b = [0 9 7 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0];

subplot(2,2,1)
bar(b)
subplot(2,2,2)
bar(e)
subplot(2,2,3)
bar(f)
subplot(2,2,4)
bar(c)

第一个子图的高度为 10,比 6,比 20 比 15。

有没有一种简单的方法可以让它们的最大高度为 20。

4

2 回答 2

7

您可以使用以下linkaxes命令:

h(1) = subplot(2,2,1)
bar(b)
h(2) = subplot(2,2,2)
bar(e)
h(3) = subplot(2,2,3)
bar(f)
h(4) = subplot(2,2,4)
bar(c)

linkaxes(h)
ylim([0 20])
于 2013-03-25T08:07:25.540 回答
5

set您可以使用命令和轴的句柄(=标识符)轻松更改轴属性。如果您还没有存储轴句柄(的第一个输出subplot),您首先必须找到它们:

%# collect axes handles
axH = findall(gcf,'type','axes');

%# set the y-limits of all axes (see axes properties for 
%# more customization possibilities)
set(axH,'ylim',[0 20])
于 2013-03-25T08:05:58.877 回答