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!