how to display multiple images in multiple axes

4 Ansichten (letzte 30 Tage)
Anamika baruah
Anamika baruah am 24 Jun. 2014
Kommentiert: Image Analyst am 25 Jun. 2014
if(E_dist(j) <.0061)
subplot(3,3,m)
%axes(handles.axes)
imshow(I);

Antworten (1)

Image Analyst
Image Analyst am 24 Jun. 2014
You need to vary m from 1 to 9 (which is 3 times 3).
  2 Kommentare
Anamika baruah
Anamika baruah am 25 Jun. 2014
give me the code
Image Analyst
Image Analyst am 25 Jun. 2014
for m = 1 : 9
subplot(3,3,m);
imshow(someImage);
end

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by