How to change plot size?
10 次查看(过去 30 天)
显示 更早的评论
Greetings,
I'm using a custom toolbox to generate a certain figure. The resulting image looks fine, except for the fact that the x-axis is hidden. Looking at the property editor I can verify it exits (stating 'R(m)'), has ticks and has the colour black. Unfortunately, it is just outside of the window (see image).
I tried increasing the window size, but to no avail, the image changes with the window size. Ideally I would like add some code that would reduce the area used for plotting (thus leaving some room to actually show the x-axis). Does anyone know if this is possible? Or if there is an earlier answered question that solves this?
Kind regards,
Karel
Image:

0 个评论
采纳的回答
Image Analyst
2017-1-9
Use the position property
set(gcf, 'units', 'normalized');
set(gcf, 'Position', [0, 0.1, 1, 0.9]);
更多回答(2 个)
Steven Lord
2017-1-9
Set the OuterPosition property of your axes. That page has a link to an example, "Axes Resize to Accommodate Titles and Labels", that may be of use to you.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!