Borrar filtros
Borrar filtros

Is this distance variable?

1 visualización (últimos 30 días)
Christian Vering
Christian Vering el 13 de En. de 2016
Comentada: Star Strider el 13 de En. de 2016
Dear Community,
in the picture you can see a distance. Is it possible to enlarge this distance, so that the graphic looks better?
Thanks for help and have a nice evening, Christian

Respuesta aceptada

Mike Garrity
Mike Garrity el 13 de En. de 2016
Yes and no.
The YLabel property of the axes is a handle to a text object, and you can set the Position property of that to move it around, but that can get a bit messy if the axes changes because you're both trying to control the same position.
The traditional trick here is to add an extra line to increase the gap:
ylabel({'My Label';' '})
You can fine-tune that by using tex interpreter (or latex) commands:
ylabel({'My Label';'\fontsize{24} '})
  1 comentario
Christian Vering
Christian Vering el 13 de En. de 2016
the first solutions works! Thank you all!

Iniciar sesión para comentar.

Más respuestas (2)

Adam
Adam el 13 de En. de 2016
Editada: Adam el 13 de En. de 2016
hYLabel = ylabel( 'Some y label' );
then you can edit the ' Position' property of your hYLabel to move it horizontally or vertically. You may have to move the axes as well though as your label may end up off the screen otherwise.
e.g
hYLabel.Position(2) = -15;
  1 comentario
Christian Vering
Christian Vering el 13 de En. de 2016
The program is embedded in a gui. There is actually no way to try it this way without changing some boxes but thanks for the fast answer. I will keep this solution in mind!

Iniciar sesión para comentar.


Star Strider
Star Strider el 13 de En. de 2016
Also, if you want to use LaTeX syntax, you need to specify the LaTeX interpreter:
xlabel('$\rm{time}~[s]$', 'Interpreter','latex')
  2 comentarios
Christian Vering
Christian Vering el 13 de En. de 2016
I am going to open that .pdf file with inkscape whichc exports it to a latex file! In this case it is possible to get the fontsize as in the text even if the image is scaled up or down
Star Strider
Star Strider el 13 de En. de 2016
It should be. Everything should scale, including the font size.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by