How to repeat a pattern on xticks?
이전 댓글 표시
Hi all,
I have the following for a plot. How can I make the A,B,C,D,E repeat for 100 times on the x label with the same patttern A,B,...
set(gca,'XTickLabel',{'A','B','C','D','E'})
Also, is there anyway to make it appear 90° rotated on the x axis?
채택된 답변
추가 답변 (1개)
Mathieu NOE
2021년 3월 12일
hello
this is an example for 20 repetition of the 5 letters pattern + 90° rotated
plot(1:100,randn(1,100));
set(gca,'XTick',(1:100),'XTickLabel',repmat({'A','B','C','D','E'},1, 20))
xtickangle(90)
댓글 수: 2
Wolfgang McCormack
2021년 3월 12일
편집: Wolfgang McCormack
2021년 3월 12일
Mathieu NOE
2021년 3월 12일
that's life ! it's hard to beat a MVP !! I have to admit I still have to learn a few things before I'm up to the task
카테고리
도움말 센터 및 File Exchange에서 Axes Appearance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!