MATLAB: What is command or way to represent 8 images in 2 different figues ?

ploting multiple images

I know that we can use subplot for combining images. but resolution decreses as we increase images. So I want to use figure 1 and figure 2 both containing 4 images. Please help me..

Best Answer

figure(1)
subplot(2,2,1), imshow(I1)
subplot(2,2,2), imshow(I2)
subplot(2,2,3), imshow(I3)
subplot(2,2,4), imshow(I4)
figure(2)
subplot(2,2,1), imshow(I1)
subplot(2,2,2), imshow(I2)
subplot(2,2,3), imshow(I3)
subplot(2,2,4), imshow(I4)
or in each figure
imshow([I1 I2; I3 I4]
Related Question