Multiple Figure Window Order
11 ビュー (過去 30 日間)
古いコメントを表示
Hello all,
I'm looking for the ability to open new figures behind current figures. For example, if I have 20 figures to open then figure 1 would appear in front, and then figure 2 would plot behind figure 1 such that I could still view figure 1. Figure 3 would then plot behind figure 2 and so on. Is there a way to accomplish this?
trevor
0 件のコメント
回答 (5 件)
Mark Brandon
2011 年 9 月 14 日
Hi J. I use this rather nice function called cyclefigs written by Peter Acklam
Actually maybe you want sortfigs.
I have found many of his utils very very useful
They can be found here
Hope that works for you.
2 件のコメント
Mark Brandon
2011 年 9 月 14 日
Yup that is more complex. descriptive is always better to get a clearer answer, see below for example.
Jan
2011 年 9 月 14 日
You can create the set of figures at first and draw to them starting from the last one:
nFig = 16;
FigH = zeros(1, nFig);
for i = 1:nFig
FigH(i) = figure('NextPlot', 'add'); % NextPlot might be useful
end
for i = nFig:-1:1
AxesH = axes('Parent', FigH(i), 'NextPlot', 'add');
line(1:100, rand(10, 100), 'Parent', AxesH);
end
Now you see the diagram on the topmost figure, which has been created at last. The next diagram is on figure under it etc.
0 件のコメント
Daniel Shub
2011 年 9 月 14 日
You can reverse the order by setting the "children" property of the root:
set(0, 'Children', flipud(get(0, 'Children')))
you might want to move the first item to the last item after every figure call:
figure;
x = get(0, 'Children');
set(0, 'Children', [x(2:end); x(1)])
0 件のコメント
Daniel Shub
2011 年 9 月 14 日
What do you do with figure 1, when you move on to figure 2? Do you close it, minimize it or move it? If you close it, you can do the following.
figure('Visible', 'Off', 'CloseRequestFcn', 'set(gcf+1, ''Visible'', ''On''); delete(gcf-1);');
For the first figure you need to then do
set(1, 'Visible', 'On');
3 件のコメント
Daniel Shub
2011 年 9 月 14 日
I think from your comments that you think this approach might work, but that you want to handle minimization. You can probably get this functionality from the underlying java object. I would suggest, however, you consider building a simple GUI with two figures. One figure contains N maximized axes with each axes having the data from a single channel. The visibility of theses axes could be controlled by the second figure that has a single slider. The slider position controls which channel axis is visible.
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!