how to change axis to text format
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ibrahim AlZoubi
am 3 Mai 2020
Kommentiert: Ibrahim AlZoubi
am 3 Mai 2020
How can I change x axis to months format
ex: Jan instead of 1, and Feb instead of 2
9 Kommentare
Akzeptierte Antwort
Ajay Kumar
am 3 Mai 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!