Can I put different figures in the same window next to each other?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sara I
am 29 Jul. 2020
Kommentiert: Sara I
am 20 Aug. 2020
I have 16 figures that I would like to put in the same window next to each other, how can I do that?
I put a picture attached of the figures
Thanks!

0 Kommentare
Akzeptierte Antwort
Arthur Roué
am 29 Jul. 2020
% Example from documentation
subplot(2,1,1);
x = linspace(0,10);
y1 = sin(x);
plot(x,y1)
subplot(2,1,2);
y2 = sin(5*x);
plot(x,y2)
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!