How to change figure size within the figure window

조회 수: 62 (최근 30일)
Nick Hitt
Nick Hitt 2017년 8월 13일
답변: Chad Greene 2017년 8월 13일
Hello! I've been trying to make a subplot with 3 panels using subtightplot and my axis labels (both x and y) are being cut off. I can get the xis labels to appear If I constantly drag the corners of the figure window (to resize it) but that makes my figure huge. Is there any way to set the interior figure size and window size so I can see my axis labels? I've tried using 'InnerPosition' and 'OuterPosition', but that seems to only change the size of the entire figure
Thanks!

채택된 답변

Chad Greene
Chad Greene 2017년 8월 13일
I think you want to change the position of the axes, not the figure. So try
ax1pos = get(gca,'position')
which will give you a four-element array containing
  1. the lower left corner x position,
  2. the lower left corner y position,
  3. the axis width,
  4. the axis height.
Adjust the second and fourth values to get some room for labels. Then set the new axis position with
set(gca,'position',ax1pos_adjusted)

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by