subplot code in matlab
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sarah Yun
am 29 Dez. 2019
Beantwortet: John D'Errico
am 29 Dez. 2019
What is subplot code to make 3 graphs show like
X X X
where X is graph
thank you
0 Kommentare
Akzeptierte Antwort
John D'Errico
am 29 Dez. 2019
This should be in the help for subplot. You want to create a 1x3 array of subplots.
subplot(1,3,1)
plot(rand(5),'.')
subplot(1,3,2)
plot(rand(5),'.')
subplot(1,3,3)
plot(rand(5),'.')
Of course, you could use a loop too, but the above is the simplest form.
0 Kommentare
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!