使用条形Matlab时右侧的空白区域

时间:2015-04-21 14:56:20

标签: matlab matlab-figure

我使用以下代码保存数字:

fig1=figure('visible','off');
b = bar(bar_res);
x={'a' ;'b' ;'c'; 'd' ;'e'; 'f' ;'g'; 'h';...
     'i'; 'j' ;'k'; 'l'; 'm'; 'n' ;'o'; 'p' ;'q' ;'r'; 's';...
     't';'u'};
set(gca,'XTickLabel',x,'XTick',1:21);
rotateXLabels( gca, 90 );
with=char('Res with dash');
without=char('Res without dash');
legend('Reference',with,without,'Location','northwest');
set(gca,'FontSize',16);
y=ylabel('Number of trials','rot',90,'FontSize',18);
set(y,'Units','Normalized','Position',[-0.15, 0.5, 0]);
savefig('a.fig');
saveas(gca, 'a.png');

但我不知道为什么右边有额外的空白区域,如下图所示:

enter image description here

2 个答案:

答案 0 :(得分:4)

只需使用xlim设置 x-limits

set(gca,'XLim',[0 numel(x)+1]);

示例:

fig1 = figure('visible','on');
b = bar(randi(10,21,1).');
x = {'a' ;'b' ;'c'; 'd' ;'e'; 'f' ;'g'; 'h';...
     'i'; 'j' ;'k'; 'l'; 'm'; 'n' ;'o'; 'p' ;'q' ;'r'; 's';...
     't';'u'};
set(gca,'XTick',1:21);
set(gca,'XTickLabel',x);
set(gca,'XLim',[0 numel(x)+1]);
% rotateXLabels( gca, 90 );
with = char('Res with dash');
without = char('Res without dash');
legend('Reference',with,without,'Location','northwest');
set(gca,'FontSize',16);
y = ylabel('Number of trials','rot',90,'FontSize',18);

enter image description here

顺便说一句,如果你有 Matlab R2014b 或更高,你就不再需要rotateXLabels了。只需使用:

ax = gca;
ax.XTickLabelRotation = 90;

答案 1 :(得分:0)

如果您致电axis tight,可能是一个简单的解决方案。但是,它可能不是您想要的结果,因为它确实删除了绘图边界处的小空格。