How can I make my plot fill the entire figure window?

조회 수: 97 (최근 30일)
Devin Cortes
Devin Cortes 2019년 1월 7일
댓글: Jan 2019년 3월 28일
Everytime I plot on matlab, instead of the plot taking up the normal amount of space on the figure window, it does this:
How can I reset this?

답변 (3개)

Jan
Jan 2019년 1월 7일
편집: Jan 2019년 3월 28일
Please post your code. We can see some parts of if in the screenshot, but posting a minimal working example, which reproduces the problem is much more useful.
Can you confirm that this does not create the wanted output:
figure;
axes('Units', 'normalized', 'Position', [0 0 1 1]);
plot(1:10, rand(10, 10))
?
  댓글 수: 1
Devin Cortes
Devin Cortes 2019년 1월 7일
My code simply tests a plot:
x = [1:5];
y = [1:5];
plot(x,y)
I attempted that and it does not give the desired output, the plot is still only in the top left corner of te figure window.

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


Ba Mo
Ba Mo 2019년 3월 28일
same problem here
i still can't solve it, but i think a key to any solution is adjusting the axes position and size, according to the TightInset property.
you can NOT change this tightinset property, you can only measure it. it reports to you the size of empty space in each direction. this is good because title, axes labels and legends are considered useful information.
  댓글 수: 2
Ba Mo
Ba Mo 2019년 3월 28일
as i expected, TighInset property has to do with it. In fact, Matlab help documentation has the solution. the help page is titled: Save Plot with Minimal White Space
i hope this does it for you
Jan
Jan 2019년 3월 28일
@Ba Mo: I do not see how this page answers the original question. The OP Devin Cortes seemed to struggle with the default positions of axes. I guess, that he has redefined the 'DefaultAxesPosition' or 'FactoryAxesPosition' property of the root object, maybe in the startup.m, a modified matlabrc.m or in a software he is running. (Maybe the property is called 'DefaultFigureAxesPosition' or similar). The details have not been provided yet.

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


madhan ravi
madhan ravi 2019년 1월 7일
  댓글 수: 2
Devin Cortes
Devin Cortes 2019년 1월 7일
I attempted this, and the plot still only appears in top left corner of figure window
madhan ravi
madhan ravi 2019년 1월 7일
It's better you contact mathworks support team by clicking the Contact Us button on the top right corner of this page.

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

카테고리

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

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by