我想分开下图中显示的两个图表条,这是我正在使用的代码:
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');