How can i create these three images in one figure?

4 visualizaciones (últimos 30 días)
Stefan Alexandru
Stefan Alexandru el 27 de Abr. de 2021
Comentada: Stefan Alexandru el 27 de Abr. de 2021
How can i create these three images in one figure ?
  2 comentarios
Scott MacKenzie
Scott MacKenzie el 27 de Abr. de 2021
Use subplot (or tiledlayout since R2019b) to combine multiple plots into a single figure.

Iniciar sesión para comentar.

Respuestas (1)

Chad Greene
Chad Greene el 27 de Abr. de 2021
If you're question is about how to make subplots, here's how.
figure
subplot(3,1,1)
plot(sind(1:1e4))
subplot(3,1,2)
plot(rand(1000,1))
subplot(3,1,3)
plot(sind(1:1e4).*cosd(3*(1:1e4)))

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by