give title below a figure
이전 댓글 표시
is it possible to give title below a figure?? if so can someone show me how to do it?
댓글 수: 2
Muruganandham Subramanian
2013년 1월 18일
Do you need to include 'title' Below xlabel?
Elysi Cochin
2013년 1월 18일
채택된 답변
추가 답변 (1개)
Jan
2013년 1월 18일
Create a TEXT object in the current axes and set it outside the plot area:
text(0.5 -0.1, 'Sub title', 'Units', 'normalized')
Does this work? I cannot test it currently.
What about xlabel?
Or create an invisible axes in the background:
FullAxesH = axes('Units', 'normalized', 'Position', [0,0,1,1], ...
'Visible', 'off');
Now get the position of each subplot:
H = subplot(1,3,1);
Pos = get(H, 'Position');
and use this to define the position of the TEXT.
카테고리
도움말 센터 및 File Exchange에서 Title에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!