how to change axis to text format
Show older comments
How can I change x axis to months format
ex: Jan instead of 1, and Feb instead of 2

9 Comments
Paresh yeole
on 3 May 2020
Use xticklabels
xticks(1:12)
xticklabels({'Jan','Feb','Mar',...)
Ibrahim AlZoubi
on 3 May 2020
Paresh yeole
on 3 May 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
on 3 May 2020
Ibrahim AlZoubi
on 3 May 2020
Ibrahim AlZoubi
on 3 May 2020
Paresh yeole
on 3 May 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
on 3 May 2020
Ibrahim AlZoubi
on 3 May 2020
Accepted Answer
More Answers (0)
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!