필터 지우기
필터 지우기

title below the figure

조회 수: 137 (최근 30일)
Basanta
Basanta 2011년 4월 4일
댓글: Isa Duran 2014년 5월 27일
how to put the title below the figure...

답변 (2개)

Jan
Jan 2011년 4월 4일
text(0.5, 0.02, 'Title below the axes', ...
'VerticalAlignment', 'bottom', ...
'HorizontalAlignment', 'center');
Another method uses the position of the corresponding AXES:
AxesH = axes;
pos = get(AxesH, 'OuterPosition');
text(pos(1) + pos(3)/2, ...
pos(2) - 0.01, ... % Adjust this to your taste
'Title below the axes', ...
'VerticalAlignment', 'top', ...
'HorizontalAlignment', 'center');
Or you can move the standard title manually:
plot(1:10);
TitleH = title('This is the title');
set(TitleH, 'Position', [0.5, 0.02], ...
'VerticalAlignment', 'bottom', ...
'HorizontalAlignment', 'center')
Or the same using the AXES' OuterPosition again.
  댓글 수: 1
Isa Duran
Isa Duran 2014년 5월 27일
Hi Jan, I have the same issue. When I use text function on 5 plots, the position of the text isn't the same in them all... What could be the problem? And do you know If its possible to have the title on the left and right side?
Thanks...

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


Robert Cumming
Robert Cumming 2011년 4월 4일
when you create the title save its handle i.e.
plot ( x, y );
h = title ( 'my title' );
then insect the h propery position i.e.
pos = get ( h, 'position' )
you can then move your title by:
set ( h, 'position', new_position )
where new_position is the place you want your title to be. It is also worth looking at the Units property to see the different options you have to how to position your title

카테고리

Help CenterFile Exchange에서 Title에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by