Can I put different figures in the same window next to each other?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sara I
el 29 de Jul. de 2020
Comentada: Sara I
el 20 de Ag. de 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!
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/338698/image.png)
0 comentarios
Respuesta aceptada
Arthur Roué
el 29 de Jul. de 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)
Más respuestas (0)
Ver también
Categorías
Más información sobre Subplots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!