Borrar filtros
Borrar filtros

How to subplot 3 graphs in 1 figure?

114 visualizaciones (últimos 30 días)
Notname Notname
Notname Notname el 1 de Jul. de 2019
Respondida: Raksa san el 12 de Mayo de 2022
Is it possible to subplot 3 graphs in this particular order?

Respuesta aceptada

Alex Mcaulley
Alex Mcaulley el 1 de Jul. de 2019
Take a look to subplot

Más respuestas (2)

Madan G
Madan G el 27 de Mzo. de 2022
subplot(2,2,1)
subplot(2,2,2)
subplot(2,1,3)

Raksa san
Raksa san el 12 de Mayo de 2022
we use
subplot(2,2,1)
subplot(2,2,2)
subplot(2,2,[3 4])
Example
t = linspace(0,10,110);
figure
subplot(2,2,1)
s1 = 1 - exp(-t);
plot(t,s1,'b*')
subplot(2,2,2)
s2 = 1 - exp(-2*t);
plot(t,s2,'ro')
subplot(2,2,[3 4])
s3 = 1 - exp(-4*t);
plot(t,s3,'gx')

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by