How can I move a plot to the left?

조회 수: 40 (최근 30일)
j_solar
j_solar 2013년 1월 16일
댓글: Walter Roberson 2020년 5월 22일
When doing plotyy the right axis label is outside the image and there is some space left on the left of the left axis. I would like to move the whole plot left so that both axis labels fit correctly. Is it possible with Matlab code?
ty

채택된 답변

Thorsten
Thorsten 2013년 1월 16일
편집: Thorsten 2013년 1월 16일
pos = get(gca, 'Position');
xoffset = -0.1;
pos(1) = pos(1) + xoffset;
set(gca, 'Position', pos)
  댓글 수: 2
Elena
Elena 2020년 5월 22일
It it possible to make this to work also to move up an entire plot?
Thank you.
Walter Roberson
Walter Roberson 2020년 5월 22일
add a positive value to pos(2)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Two y-axis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by