使用plotyy时如何调整图形大小?

时间:2015-01-31 18:35:14

标签: matlab matlab-figure

我在使用plotyy时尝试调整数字大小:

clc;
clear all;

t = 0:.1:4*pi;
y = sin(t);

figure(1);
set(gcf,'units','inches','renderer', 'painters');
pos = get(gcf,'pos');
set(gcf,'Units','inches',...
    'Position',[pos(1) pos(2) 4 2]);
plot(t,y)
xlabel('Time(s)')
ylabel('y(t)')
title('Sin function')
legend('y=sin(t)')
axis([0 t(end) -1.5 1.5])
set(gca,...
    'Units','normalized',...
    'YTick',-1.5:.5:1.5,...
    'XTick',0:t(end)/4:t(end),...
    'FontUnits','points',...
    'FontWeight','normal',...
    'FontSize',9,...
    'FontName','Times')
set(gca, 'Position', get(gca, 'OuterPosition') - ...
    get(gca, 'TightInset') * [-1 0 1 0; 0 -1 0 1; 0 0 1 0; 0 0 0 1]);

figure(2);
set(gcf,'units','inches','renderer', 'painters');
pos = get(gcf,'pos');
set(gcf,'Units','inches',...
    'Position',[pos(1) pos(2) 4 2]);
[haxes,hline1,hline2]=plotyy(t,y,t,t);
ylabel(haxes(1),'sin(t)')
ylabel(haxes(2),'45degree')
xlabel(haxes(1),'Time(s)')
title('Sin function')
set(haxes,...
    'Units','normalized',...
    'FontUnits','points',...
    'FontWeight','normal',...
    'FontSize',9,...
    'FontName','Times')
set(haxes(1), 'Position', get(haxes(1), 'OuterPosition') - ...
    get(haxes(1), 'TightInset') * [-1 0 1 0; 0 -1 0 1; 0 0 0 0; 0 0 0 1]-...
    get(haxes(2), 'TightInset') * [0 0 0 0; 0 0 0 0; 0 0 1 0; 0 0 0 0]);

该示例表明该程序适用于情节,但不适用于情节。似乎当我使用情节时,TightInset会考虑到底部和顶部的文本(应该如此),但是当我使用plotyy时它并没有考虑到它们。但我不明白为什么会这样,以及如何解决它。有什么想法吗?

[以下代码与我对所选答案的评论有关]

figure(3);
set(gcf,'units','inches','renderer', 'painters');
pos = get(gcf,'pos');
set(gcf,'Units','inches',...
    'Position',[pos(1) pos(2) 4 2]);
plot(t,y,'b');
set(gca,'YColor','b')
xlabel('Time(s)')
ylabel('y(t)')
title('Sin function')
axis([0 t(end) -1.5 1.5]);
set(gca,...
    'Units','normalized',...
    'YTick',-1.5:.5:1.5,...
    'XTick',0:t(end)/4:t(end),...
    'FontUnits','points',...
    'FontWeight','normal',...
    'FontSize',9,...
    'FontName','Times')
axesPosition = get(gca,'Position');  
hNewAxes = axes('Position',axesPosition,...
    'Color','none',...           
    'YLim',[0 10],...            
    'YAxisLocation','right',...  
    'XTick',[],...               
    'Box','off');                
set(gca,'YColor',[0 .5 0]);
ylabel(hNewAxes,'45degree');
hold all
plot(hNewAxes,t,t,'color',[0 .5 0]);
hold off

1 个答案:

答案 0 :(得分:0)

我个人试图避免plotyy,因为总有一个属性不符合预期。如果我需要,我通常会创建第二个axes并手动设置属性,从第一个axes复制我需要的东西,然后链接一些属性。

如果你看一下plotyy的代码,你会看到它做同样的...还有一些额外的。

一个很好的额外功能是如何尝试匹配y两个轴上的刻度,即使它们的跨度不同(但您可以复制该部分并仍然使用手动双轴解决方案)。

另一个额外的,我怀疑对你观察到的行为负责,是它设置监听器和回调以重新调整两个轴的position属性。在某个地方它必须杀死axes的一些自动重新调整,因为如果您在代码中注意到,甚至在您尝试手动更改position之前,axes就不会重新调整名为xlabeltitle(通常是在标准单axes上执行此操作时)。

这就是您尝试用来重新调整TightInset的{​​{1}}无法正常工作的原因...因为axes在添加文本对象时没有重新调整(等等)纵向axes是错误的。)


现在针对您的情况,幸运的是,这似乎只会影响TightInset的垂直部分,因此如第一个图所示,快速解决所有问题的方法是使用TightInset属性垂直部分(从OuterPosition获取水平部分的边距之后)。

因此,在您的代码中,只需将上次调用TightInset替换为:

set(haxes,'Position', ...)

一切都应该紧张; - )