how to display multiple images in multiple axes
이전 댓글 표시
if(E_dist(j) <.0061)
subplot(3,3,m)
%axes(handles.axes)
imshow(I);
답변 (1개)
Image Analyst
2014년 6월 24일
0 개 추천
You need to vary m from 1 to 9 (which is 3 times 3).
댓글 수: 2
Anamika baruah
2014년 6월 25일
Image Analyst
2014년 6월 25일
for m = 1 : 9
subplot(3,3,m);
imshow(someImage);
end
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!