Effacer les filtres
Effacer les filtres

How to keep yticklabels intact after reversing the Y-axis

4 vues (au cours des 30 derniers jours)
KarolN
KarolN le 5 Déc 2021
Commenté : Star Strider le 5 Déc 2021
I reversed y-direction in a chart, but I would like my yticklabels stay same as were, ie. 80 at the top and 0 at bottom. How do I solve it?
I tried to define them manually but to no avail
yticklabels([0:10:80])
set(gca,'ydir','reverse')

Réponse acceptée

Star Strider
Star Strider le 5 Déc 2021
Just change the labels —
x = linspace(0, 100);
y = [20:20:80].'*exp(-(x-50).^2/75);
figure
plot(x, y)
grid
title('Original')
figure
plot(x, y)
grid
Ax = gca;
yt = Ax.YTick;
Ax.YDir = 'reverse';
Ax.YTickLabel = string(flip(yt));
title('Flipped Y-Axis With Retained Original Y-Axis Labels')
.
  2 commentaires
KarolN
KarolN le 5 Déc 2021
Thanks!
Star Strider
Star Strider le 5 Déc 2021
As always, my pleasure!
.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by