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!