Can I put different figures in the same window next to each other?

2 ビュー (過去 30 日間)
Sara I
Sara I 2020 年 7 月 29 日
コメント済み: Sara I 2020 年 8 月 20 日
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!

採用された回答

Arthur Roué
Arthur Roué 2020 年 7 月 29 日
You can use subplot to create axes in tiled positions.
% 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)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by