필터 지우기
필터 지우기

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