フィルターのクリア

give title above displayed images of different sizes....

1 回表示 (過去 30 日間)
Elysi Cochin
Elysi Cochin 2014 年 4 月 30 日
編集済み: Elysi Cochin 2014 年 4 月 30 日
i display images of different size in a figure file...
but i wanted to give titles also above the figure.... is it possible to give titles above the images? If yes please can someone help me how to sort it out....

採用された回答

Image Analyst
Image Analyst 2014 年 4 月 30 日
Try this:
axes(Handles.hSubplot(iRow,iCol));
axis('off');
title(msg{iRow,iCol});
  3 件のコメント
Image Analyst
Image Analyst 2014 年 4 月 30 日
It shoudl have worked, but try to send in the axes handle explicitly into title:
axes(Handles.hSubplot(iRow,iCol));
gca % Report current axes handle to the command line.
axis('off');
title(Handles.hSubplot(iRow,iCol), msg{iRow,iCol});
If that doesn't work, then tell me what handle ID numbers get reported to the command window.
Elysi Cochin
Elysi Cochin 2014 年 4 月 30 日
thank you so much sir, it worked....

サインインしてコメントする。

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by