How to display multiple images in a single figure?

4 views (last 30 days)
I need to display EigenFaces matrix where multiple images are shown within single window. What will be the code for displaying or viewing all the folder images altogether in one.

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 12 Feb 2015
Edited: Azzi Abdelmalek on 12 Feb 2015
Use subplot
Example with two images
im1=imread('pout.tif')
subplot(2,1,1),
imshow(im1);
subplot(2,1,2),
imshow(im1)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!