0

我想分开下图中显示的两个图表条,这是我正在使用的代码:资源

bar(uu,nn/numel(n));
hold on
bar(uu1,nn1/numel(n1),'r');
hold off

,但我希望他们是这样的:在此处输入图像描述

更新:我正在使用 Shai 建议的以下代码,但无花果。现在不正确,因为开头有空格并且 y 轴的值不正确: 在此处输入图像描述

bar(uu-.5, nn/numel(nn), .5);hold all;bar(uu1, nn1/numel(nn1),.5,'r');
hleg = legend('Kinect','Xtion','Location','NorthEast');
4

1 回答 1

1

一种解决方法可以是稍微改变y序列的值:

bar(uu-.25, nn/numel(n), .5);
hold all;
bar(uu1 + .25, nn1/numel(n1),.5);
legend({'a','b'});
于 2013-05-01T12:10:02.587 回答