how to change axis to text format
3 ビュー (過去 30 日間)
古いコメントを表示
How can I change x axis to months format
ex: Jan instead of 1, and Feb instead of 2
9 件のコメント
採用された回答
Ajay Kumar
2020 年 5 月 3 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!