Grouping Figures with Subplots
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
MByk
am 1 Jul. 2018
Kommentiert: MByk
am 1 Jul. 2018
I have 3 figures which has 5 subplots and a uitable. I want to group them together. I use the following code but in the first run first figure opens in a separate window. When I close all figures and rerun every figure becomes docked exactly as I wanted. How can I fix it? Thanks for the help.
for k = 1:3
figure('Name',['Values',k],'NumberTitle','off','units','normalized');
set(0,'DefaultFigureWindowStyle','docked');
for j = 1:4
...
subplot(2,3,j)
plot(...)
end
...
subplot(2,3,5)
plot(...)
end
figure('Name','Results','NumberTitle','off','units','normalized');
uitable(...);
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 1 Jul. 2018
Move the
set(0,'DefaultFigureWindowStyle','docked');
to before the initial for loop.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!