Grouping Figures separately into windows and tabs
조회 수: 444 (최근 30일)
이전 댓글 표시
I have 4 plots to make, of vectors y1, y2, y3 and y4, all as a function of a vector x. I would like the first two plots to be grouped as tabs within a single Figure window, and the next two plots also grouped as tabs but in a separate window.
I tried this code:
figure
set(0,'DefaultFigureWindowStyle','docked')
plot(x,y1)
plot(x,y2)
figure
set(0,'DefaultFigureWindowStyle','normal')
plot(x,y3)
set(0,'DefaultFigureWindowStyle','docked')
plot(x,y4)
..but once tab grouping is re-enabled, plots are just added as new tabs appended to the old window rather than in a new window.
I played around with the order of the commands above but it didnt help. If anything, I only managed to get one of the plots overwritten in the same window. Please note i don't want any of the graphs to overlap, therefore "hold on" would not help.
Any suggestions? Thanks!
댓글 수: 3
Ajay krishna Vasanthakumar
2020년 10월 30일
Hello can someone help how to change the tab position from top to left programtically in the docked figures
Mojgan Vaziri
2023년 7월 17일
@Ajay krishna Vasanthakumar I also wonder that. Do you have an answer to that question by now?
답변 (4개)
Jan
2017년 8월 28일
편집: Jan
2017년 8월 28일
You can create a window, which contains several docked figures:
desktop = com.mathworks.mde.desk.MLDesktop.getInstance;
myGroup = desktop.addGroup('myGroup');
desktop.setGroupDocked('myGroup', 0);
myDim = java.awt.Dimension(4, 2); % 4 columns, 2 rows
% 1: Maximized, 2: Tiled, 3: Floating
desktop.setDocumentArrangement('myGroup', 2, myDim)
figH = gobjects(1, 8);
bakWarn = warning('off','MATLAB:HandleGraphics:ObsoletedProperty:JavaFrame');
for iFig = 1:8
figH(iFig) = figure('WindowStyle', 'docked', ...
'Name', sprintf('Figure %d', iFig), 'NumberTitle', 'off');
drawnow;
pause(0.02); % Magic, reduces rendering errors
set(get(handle(figH(iFig)), 'javaframe'), 'GroupName', 'myGroup');
plot(1:10, rand(1, 10));
end
warning(bakWarn);
or after hitting the icon on the top right to move all figures inside tabs (or prgrammatically: by desktop.setDocumentArrangement('myGroup', 1, myDim) ) :
This uses heavily undocumented commands. It works since at least 2009a (except for the gobjects()), but I assume I should use the EDT instead of the magic pause(0.02). I hope that Yair will improve this snippet.
댓글 수: 16
Azzi Abdelmalek
2014년 10월 4일
Use hold on
figure
set(0,'DefaultFigureWindowStyle','docked')
plot(x,y1)
hold on
plot(x,y2)
댓글 수: 2
Jrod H
2022년 4월 1일
Well, the set( ) function did exactly what I wanted!! Works great. Do you know what command to pass to get the windows to display in "Tile" mode rather than as tabs?
Image Analyst
2014년 10월 4일
MATLAB does not have a tab control. The best you can do is a panel. Put your stuff into panels and then set the visibility of each panel on or off using set(hPanel, 'Visibility', 'off') that is in the callback of something like checkboxes or pushbuttons that you put into an array atop where the panels go.
Alternatively you could use a new figure for each set of plots (I'd probably not have more than about an array of 3 by 4 on each window) and use subplot() to plot into the desired plot on that figure. Let me know if you don't know how to do this and it's what you want.
Matthew
2017년 6월 19일
I'm not too familiar, but I think using the "docked" approach to getting these tabbed figures, you will not be able to accomplish what you are trying to do. Any "docked" figures will all end up in one top level figures window. Any "normal" figures can exist on their own. You can not have two figure windows each with docked figures.
I think you could accomplish what you are trying to do with uifigures, but they may lack other capabilites you are looking for. See "Graphics Support in App Designer" in the matlab help for discussion of what uifigures do and do not support.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!