How to plot 3 graphs in 1 figure?

35 visualizaciones (últimos 30 días)
Elia Paini
Elia Paini el 1 de Mayo de 2021
Editada: Adam Danz el 3 de Mayo de 2021
Hi, I want to plot 3 graphs in one figure, arranging them two on the left and one on the right.
With subplot, I managed to arrange them only in this way:
Thank you!

Respuesta aceptada

dpb
dpb el 1 de Mayo de 2021
There's an example of 2 on top and one on bottom that should have given the clue of how to bo about it...
hAx(1)=subplot(2,2,1);
hAx(2)=subplot(2,2,3);
hAx(3)=subplot(2,2,[2 4]);
results in axes as shown
  2 comentarios
Adam Danz
Adam Danz el 2 de Mayo de 2021
Editada: Adam Danz el 3 de Mayo de 2021
Or tiled layout
fig = figure();
tlo = tiledlayout(fig,2,2);
nexttile
nexttile([2,1])
nexttile
Elia Paini
Elia Paini el 2 de Mayo de 2021
Thank you both!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Line Plots 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!

Translated by