how to change axis to text format
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ibrahim AlZoubi
il 3 Mag 2020
Commentato: Ibrahim AlZoubi
il 3 Mag 2020
How can I change x axis to months format
ex: Jan instead of 1, and Feb instead of 2
9 Commenti
Risposta accettata
Ajay Kumar
il 3 Mag 2020
Use xticklables for eg:
x = linspace(0,12);
y = x.^2;
plot(x,y)
xticks([0:1:12])
xticklabels({'','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'})
5 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!