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

1 vue (au cours des 30 derniers jours)
Sara I
Sara I le 29 Juil 2020
Commenté : Sara I le 20 Août 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!

Réponse acceptée

Arthur Roué
Arthur Roué le 29 Juil 2020
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)

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by