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:

 Respuesta aceptada

Image Analyst
Image Analyst el 9 de En. de 2017

0 votos

Use the position property
set(gcf, 'units', 'normalized');
set(gcf, 'Position', [0, 0.1, 1, 0.9]);

1 comentario

Karel Drenth
Karel Drenth el 9 de En. de 2017
Thanks for the quick reply, works as intended!

Iniciar sesión para comentar.

Más respuestas (2)

Image Analyst
Image Analyst el 9 de En. de 2017

0 votos

Try Yair's attached MaximizeFigureWindow function.
Steven Lord
Steven Lord el 9 de En. de 2017

0 votos

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.

Categorías

Más información sobre Printing and Saving en Centro de ayuda y File Exchange.

Preguntada:

el 9 de En. de 2017

Comentada:

el 9 de En. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by