How can I plot a reverse x-axis on the same graph?

5 vues (au cours des 30 derniers jours)
Jeah MK
Jeah MK le 26 Jan 2022
I have x = [0 1 2 3 4 3 2 1 0]; and y = 2*x; how can I plot(x,y) and see the value on x-axis as [0 1 2 3 4 3 2 1 0]?

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 26 Jan 2022
Modifié(e) : KALYAN ACHARJYA le 26 Jan 2022
#Convert to strings
x=[0 1 2 3 4 3 2 1 0];
y = 2*x;
plot(y);
data=string(x);
set(gca,'xtick',1:length(x),'xticklabel',data)

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by