How do I reverse the y axis label on a graph?

16 visualizaciones (últimos 30 días)
Sara
Sara el 21 de Sept. de 2017
Comentada: Walter Roberson el 21 de Sept. de 2017
I have multiple things plotting on one graph and have one of the axes on the right side and the other two on the left. I would like to reverse the order of the right side label only. I do not want to reverse the axis. Is there a way to do this? Thanks!

Respuestas (1)

Walter Roberson
Walter Roberson el 21 de Sept. de 2017
ax = gca;
xt = get(ax, 'xtick');
xtl = get(ax, 'xticklabel');
mask = xt > 0;
xtl(mask) = fliplr( xtl(mask) );
set(ax, 'xticklabel', xtl)
  4 comentarios
Sara
Sara el 21 de Sept. de 2017
That just flipped each individual letter. I'll just deal with it. Thanks.

Iniciar sesión para comentar.

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by