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 Center および File ExchangeGraphics Object Programming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by