How do I insert a caption below a figure in Matlab?

조회 수: 338 (최근 30일)
Susan
Susan 2011년 9월 26일
댓글: Image Analyst 2022년 8월 2일
I would like to add short captions below my figures, so that the captions are part of the same file. Is there a way to do this in Matlab?

답변 (3개)

Fangjun Jiang
Fangjun Jiang 2011년 9월 26일
Use text() or annotation() function. Or maybe you mean xlabel()
  댓글 수: 3
Rhythm Analyst
Rhythm Analyst 2022년 5월 15일
text() and annotation() only seem to be capable of inserting inside a graph, or off to the left/right. Is there a way to put text below the xlabel of the x-axis?
for example:
notice the text "Fig. 3 ..." below the graph. This is what I am trying to achieve in MatLab. Is there a way to do this? Thank you.
Image Analyst
Image Analyst 2022년 5월 15일
You'll have to build a GUI for that. Have an axes, then below it place a static text label. Use sprintf() to build up the string.

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


Michael Leung
Michael Leung 2011년 9월 26일

Image Analyst
Image Analyst 2022년 5월 15일
xlabel('This is my caption');
  댓글 수: 2
emjey
emjey 2022년 8월 2일
How is this a figure caption?
Image Analyst
Image Analyst 2022년 8월 2일
@emjey It's not. It's a caption below the bottom edge of the axes box, so it's like an caption for the x-axis. But when @Susan said she wanted "short captions below my figures" I figured that an x-axis caption was what she wanted. In MATLAB the whole window is called the "figure" and images/graphs are in "axes" controls. So you see that there cannot really be anything outside the figure since that would be outside of any window that MATLAB creates, in essence it might be over the desktop or some other application that MATLAB has no control over. So the only way is to put anything and everything inside a "figure", not below it. So that's why we all figured she really meant "axes" instead of "figure".

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

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by