从图中绘制子图

时间:2015-09-25 20:51:21

标签: matlab matlab-figure

我想迭代地从图中创建子图。我有以下代码:

for i=1:numel(snips_timesteps)
        x=openfig(sprintf('./results/snips/temp/%d.fig',i),'reuse');
        title(sprintf('Timestep %d',snips_timesteps(i)));
        xlabel('');
        ax= gca;
        handles{i} = get(ax,'children');
        close gcf;
    end
    h3 = figure; %create new figure
    for i=1:numel(snips_timesteps)
        s=subplot(4,4,i)
        copyobj(handles{i},s);
    end

我得到的错误是:

Error using copyobj
Copyobj cannot create a copy of an
invalid handle.



K>> handles{i}

ans =

  3x1 graphics array:

  Graphics    (deleted handle)
  Graphics    (deleted handle)
  Graphics    (deleted handle)

是否可以关闭一个数字但仍然保留它的手柄?似乎删除了引用。

修改

    handles={};
    for i=1:numel(snips_timesteps)
        x=openfig(sprintf('./results/snips/temp/%d.fig',i),'reuse');
        title(sprintf('Timestep %d',snips_timesteps(i)));
        xlabel('');
        ax= gca;
        handles{i} = get(ax,'children');
        %close gcf;
    end
    h3 = figure; %create new figure
    for i=1:numel(snips_timesteps)
        figure(h3);
        s=subplot(4,4,i)
        copyobj(handles{i},s);
        close(handles{i});
    end

错误:

K>> handles{i}

ans = 

  3x1 graphics array:

  Line
  Quiver
  Line

K>> close(handles{i})
Error using close (line 116)
Invalid figure handle.

如果我删除close(handles{i}),它会再次绘制所有子图的第一个数字!

1 个答案:

答案 0 :(得分:2)

没有。通过closing the figure,您将删除它以及与之关联的所有数据,包括其句柄。

如果您移除close gcf;并在figure(i); close gcf;之后放置copyobj(handles{i},s);,您将获得所需的效果。但是,您还需要在figure(h3);之前添加s=subplot(4,4,i),以确保将子图添加到正确的数字中。

以下是一些示例代码,向您展示它的工作原理。它首先创建4个数字并抓住它们的轴的手柄。然后我们遍历每个图并将其复制到另一个图的子图中。

for i = 1:4
    figure(i)
    y = randi(10, [4 3]);
    bar(y)

    ax = gca;
    handles{i} = get(ax, 'Children');
end

for i = 1:4
    figure(5);
    s = subplot(2, 2, i);
    copyobj(handles{i}, s);
    figure(i);
    close gcf;
end