Drawing multiple (10) subplots in the same figure

Hi everyone,
I want to present 10 subplots in the same figure, in two columns (means 5 rows). For example if the plots a are;
plot (t, S1), plot (t, S2), plot (t,S3), .... plot(t, S10),
how to 'set' the position of the specific plots in certain subplot so that I know which plot is at which location.
Thanks

1 comentario

DAIJIRY NARZARY
DAIJIRY NARZARY el 11 de Ag. de 2021
Editada: DAIJIRY NARZARY el 11 de Ag. de 2021
Hi,
Its very simple and easy. You can use subplot (2,5,1);subplot(2,5,2)........(2,5,10). You will get the complete graph in 2 rows and 5 columns. Hope it helps.

Iniciar sesión para comentar.

 Respuesta aceptada

Star Strider
Star Strider el 11 de Feb. de 2019

0 votos

The subplot function fills the subplot positions by row, so that the second subplot (subplot(5,2,2)) is the second subpot in the first row, the first subplot in the second row is subplot(5,2,3), and so for the rest. Just number them accordingly to put them where you want them.

5 comentarios

Khan Engr
Khan Engr el 11 de Feb. de 2019
Thank you very much Star Strider, you have explained it very nicely, in a simple way.
The task is done.
Khan Engr
Khan Engr el 11 de Feb. de 2019
I have an associated question;
In my analysis it seems that the 10 subplot in one column makes the presetation more clear. But doing so, the plots apears so small and readbility is a problem. As the time on the x-axis is same for all plots, s it possible to 'remove' the x-axis of first 9 plots while the last (bottom) one remains.
As always, my pleasure.
If you have R2018b or later, consider using the stackedplot (link) function.
To use subplot with a loop for example, this should work:
for k1 = 1:9
subplot(10,1,k1)
plot(rand(1, 100), rand(1,100))
grid
Ax = gca;
Ax.XAxis.Visible = 'off';
end
subplot(10,1,10)
plot(rand(1, 100), rand(1,100))
grid
xlabel('X-Axis Label')
Experiment to get the result you want.
Khan Engr
Khan Engr el 12 de Feb. de 2019
Thanks a lot again for guiding, the issue is sloved.
Star Strider
Star Strider el 12 de Feb. de 2019
As always, my pleasure.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 11 de Feb. de 2019

Editada:

el 11 de Ag. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by