How can I plot or place three or four figures in one figure
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have three figures size 198kb, 208kb and 187kb. How can i make those figures showing in a single panel? say the figure names are EM_SH_01, EM_SH_02,EM_SH_03
0 commentaires
Réponses (1)
Keegan Carvalho
le 30 Avr 2022
Modifié(e) : Keegan Carvalho
le 30 Avr 2022
If I understood correctly, what you could do is use subplots. You could get your 4 images and then export them as one panel
myimage = imread('image1.jpg');
myimage2 = imread('image2.jpg');
myimage3 = imread('image3.jpg');
myimage4 = imread('image4.jpg');
subplot(2,2,1)
image("myimage")
title('EM_SH_01')
subplot(2,2,2)
image("myimage2")
title('EM_SH_02')
subplot(2,2,3)
image("myimage3")
title('EM_SH_03')
subplot(2,2,4)
image("myimage4")
title('EM_SH_04')
8 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!