How do I change the values for x-axis ?
235 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Anne-Lise Marais
le 13 Jan 2021
Réponse apportée : Anne-Lise Marais
le 18 Jan 2021
Hi all,
here is my code with the figure
MoyenneDeviant=mean(Deviant,2);
plot(MoyenneDeviant)
legend ("deviant")
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/486908/image.jpeg)
But the values of the x axis are not the one i wanted
after reading an answer to a similar question, I wrote this code to replace the ticks by other
xticks([0 50 100 150 200 250])
set(gca,'XLim',[-100 900]);
set(gca,'YLim',[-3 3]);
set(gca,'Xtick',[-100 100 300 500 700 900])
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/486913/image.jpeg)
but it changed the scale instead of the values.
How do I get to change the values by the ones I want ?
MATLAB 2017a
Thanks
0 commentaires
Réponse acceptée
Plus de réponses (1)
Mischa Kim
le 13 Jan 2021
Modifié(e) : Mischa Kim
le 13 Jan 2021
Hi Anne-Lise, do you mean changing the tick labels? See this answer. If this does not address your question, how exactly do you want "to change the values by the ones I want"?
0 commentaires
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!