Keeping xlabels but not xticks

조회 수: 1 (최근 30일)
Jacob
Jacob 2017년 3월 9일
댓글: Adam 2017년 3월 9일
Hi there,
See image: I would like to keep the xlabels (M1,M2,M3,M4,All) whilst deleting the xticks. How do I do this?
Thanks

답변 (1개)

Adam
Adam 2017년 3월 9일
hAxes.XAxis.TickLength = [0 0];
where hAxes is your axes handle. This assumes you are using a sufficiently recent version of Matlab (R2015b or later)
  댓글 수: 2
Jacob
Jacob 2017년 3월 9일
I've got the 2017 version but that didn't seem to work?
Adam
Adam 2017년 3월 9일
figure; hAxes = gca;
plot( hAxes, rand( 1, 100 ) )
hAxes.XAxis.TickLength = [0 0];
seems to work fine in R2016a. I don't have R2017, but I don't see why it shouldn't work there also.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by