subplot code in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
What is subplot code to make 3 graphs show like
X X X
where X is graph
thank you
0 件のコメント
採用された回答
John D'Errico
2019 年 12 月 29 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!