how to resize the image
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have plotted 2 images in one figure using subplot
figure(1);
clf
set(gcf,'Position',[20, 180, 1280, 720])
subplot(1,2,1)
imshow(image_array{1,1})
subplot(1,2,2)
imshow(image_array{2,1})
and my plot looks like as shown in image.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1185603/image.png)
I would like to increase the size of the image. How can I do that?
0 commentaires
Réponses (1)
KALYAN ACHARJYA
le 8 Nov 2022
Modifié(e) : KALYAN ACHARJYA
le 8 Nov 2022
"I would like to increase the size of the image. How can I do that?"
imresize
Or
You may be looked for? How can I keep figure window maximized when showing an image?
0 commentaires
Voir également
Catégories
En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!