how to display multiple images in multiple axes

조회 수: 3 (최근 30일)
Anamika baruah
Anamika baruah 2014년 6월 24일
댓글: Image Analyst 2014년 6월 25일
if(E_dist(j) <.0061)
subplot(3,3,m)
%axes(handles.axes)
imshow(I);

답변 (1개)

Image Analyst
Image Analyst 2014년 6월 24일
You need to vary m from 1 to 9 (which is 3 times 3).
  댓글 수: 2
Anamika baruah
Anamika baruah 2014년 6월 25일
give me the code
Image Analyst
Image Analyst 2014년 6월 25일
for m = 1 : 9
subplot(3,3,m);
imshow(someImage);
end

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by