How to remove certain tick labels from xaxis in line plot
조회 수: 11 (최근 30일)
이전 댓글 표시
Hi,
I've been graphing this line plot. Currently my x-axis has tick labels from 0 to 3000 seconds in 500 second intervals as shown below. How can I remove all the x-axis tick labels except for the label at 3000? Thanks.

댓글 수: 0
채택된 답변
Star Strider
2022년 7월 12일
Try something like this —
t = linspace(0, 3000, 3000);
s = (sin(2*pi*t*5)>0.9)*6.8 + 0.1;
figure
plot(t, s)
figure
plot(t, s)
xt = xticks;
set(gca,'XTick',max(xt));
.
댓글 수: 0
추가 답변 (1개)
Anay Aggarwal
2022년 7월 12일
Hi Aaron,
I have an understanding that you want to remove tick labels from the x-axis.
Please refer to the following page for details.
Regards
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!