how to display sub images which is stored in folder without overlapping?
Show older comments
my subimages and output how it should look like is attached.kindly suggest code.because later on each and every segment i have to do modification.
any help is appreciated
1 Comment
Adam
on 10 Apr 2018
doc subplot
will do that, especially if you are happy to have such a relatively large amount of space around the images. Otherwise you can create the axes yourself, creating a mathematically defined grid to populate their positions.
Accepted Answer
More Answers (1)
Walter Roberson
on 12 Apr 2018
dinfo = dir('*.png')
filenames = {dinfo.name};
montage(filenames);
Categories
Find more on App Building 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!