how to display multiple images in multiple axes
Show older comments
if(E_dist(j) <.0061)
subplot(3,3,m)
%axes(handles.axes)
imshow(I);
Answers (1)
Image Analyst
on 24 Jun 2014
0 votes
You need to vary m from 1 to 9 (which is 3 times 3).
2 Comments
Anamika baruah
on 25 Jun 2014
Image Analyst
on 25 Jun 2014
for m = 1 : 9
subplot(3,3,m);
imshow(someImage);
end
Categories
Find more on Subplots 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!