how to change axis to text format
Ältere Kommentare anzeigen
How can I change x axis to months format
ex: Jan instead of 1, and Feb instead of 2

9 Kommentare
Paresh yeole
am 3 Mai 2020
Use xticklabels
xticks(1:12)
xticklabels({'Jan','Feb','Mar',...)
Ibrahim AlZoubi
am 3 Mai 2020
Paresh yeole
am 3 Mai 2020
The vectors A,B,C are not of same length.
Size of vector B is 1*13.
Also, vector C is not defined correctly.
Ibrahim AlZoubi
am 3 Mai 2020
Ibrahim AlZoubi
am 3 Mai 2020
Ibrahim AlZoubi
am 3 Mai 2020
Paresh yeole
am 3 Mai 2020

It works:
plot(months,A)
hold on
plot(months,B)
plot(months,C)
xticks(1:12)
xticklabels({'Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'})
Ibrahim AlZoubi
am 3 Mai 2020
Ibrahim AlZoubi
am 3 Mai 2020
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Annotations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
