필터 지우기
필터 지우기

Is it possible to make larger gap between xlabel and the x-axes?

조회 수: 119 (최근 30일)
Mr M.
Mr M. 2015년 5월 29일
댓글: Enrico Maria Turco 2020년 12월 27일
How to set the gap/space between x or y legends and axes?

답변 (2개)

Jos (10584)
Jos (10584) 2015년 5월 29일
편집: Jos (10584) 2015년 5월 29일
You can use SET and GET:
xh = get(gca,'xlabel') % handle to the label object
p = get(xh,'position') % get the current position property
p(2) = 2*p(2) ; % double the distance,
% negative values put the label below the axis
set(xh,'position',p) % set the new position
  댓글 수: 3
Jos (10584)
Jos (10584) 2015년 6월 6일
편집: Jos (10584) 2015년 6월 6일
Try another value than 2, like p(2) = 1.1 * p(2)
Lars Abrahamsson
Lars Abrahamsson 2020년 9월 28일
Even very small movement might go out of the picture:
clear all
close all
TestX = randn(1,10);
TestY = randn(1,10);
X = cumsum(TestX);
Y = cumsum(TestY);
figure
plot(X,Y)
xlabel('balle')
ylabel('bolle')
figure
plot(X,Y)
xlabel('balle')
ylabel('bolle')
xh = get(gca,'xlabel') % handle to the label object
p = get(xh,'position') % get the current position property
p(2) = - 0.1 + p(2) ; % double the distance,
% negative values put the label below the axis
set(xh,'position',p) % set the new position
For example.
Is there nothing that can be doune against it?

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


Tongyao Pu
Tongyao Pu 2019년 11월 23일
Maybe it is too late for your problem, but another way could be just adding an extra blank line:
title({'the title you want to add',' '})
  댓글 수: 2
BN
BN 2020년 4월 1일
What if I want to increase the gap between ylabel and the y-axes?
Enrico Maria Turco
Enrico Maria Turco 2020년 12월 27일
yl=get(gca,'ylabel');
pyl = get(yl,'position');
pyl(1) = 1.05*pyl(1);
set(yl,'position',pyl)
Note that a minor change of 0.05 might be sufficient to have enough space.

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

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by