MATLAB:在不改变图形宽度或调整图形大小的情况下在图形底部添加图例

时间:2013-05-02 03:11:29

标签: matlab matlab-figure

我在MATLAB情节中经常遇到传说中的问题,并且希望能够提出一种方法来避免它们。

我想做的是以下内容:

  1. 创建一个固定大小的数字:

    f = figure('Position',[0 0 800 600]

  2. 绘制我希望在此图中绘制的任何内容

    x = -pi:0.01:pi
    plot(x,sin(x),x,cos(x),x,tan(x))

  3. 在图的底部的情节中添加一个图例,而无需调整图表大小(我很好地使图形“更高”可以说“,但我想如果可能的话,我还想使用legendflex包来创建图例(不确定这是否会引起任何问题)。

  4. 有谁知道我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

我使用Octave而不是MATLAB,但是做了以下工作(或者至少让你更接近你想要的东西)?

% Create the figure and plot
f = figure('Position',[0 0 800 600]);
x = -pi:0.01:pi;
plot(x,sin(x),x,cos(x),x,tan(x));

% Set axes and figure units to pixels, get current positions
set(f,'Units','pixels')
set(gca,'Units','pixels')
fig_pos = get(f,'position');
old_ax_pos = get(gca,'position');

% Add a legend et get its position too
h = legend('L1','L2','L3','location','southoutside');
set(h,'Units','pixels')
leg_pos = get(h,'position');

% Get the new axes position, look at how much it shifted
new_ax_pos = get(gca,'position');
pixel_shift = new_ax_pos - old_ax_pos; % y position shift is positive (axes moved up), y height shift is negative (axes got smaller)

% Make figure taller and restore axes height to their initial value
set(f,'position',fig_pos - [0 0 0 pixel_shift(4)]);
set(h,'position',leg_pos)
set(gca,'position',old_ax_pos + [0 pixel_shift(2) 0 0])

% Create a new figure without legend for comparing
f2 = figure('Position',[0 0 800 600]);
x = -pi:0.01:pi;
plot(x,sin(x),x,cos(x),x,tan(x));

阿诺