グラフの目盛りを非表示にする方法

조회 수: 13 (최근 30일)
Masaki Nakamori
Masaki Nakamori 2021년 1월 28일
답변: Srivardhan Gadila 2021년 1월 30일
グラフの目盛りの数字だけ残し、グラフの内向きに表示される目盛りだけ削除する方法はありますでしょうか。

채택된 답변

Srivardhan Gadila
Srivardhan Gadila 2021년 1월 30일
By the term "scale" in the above question if you are referring to the Tick marks on the axes then you can make them disappear by making use of the TickLength property of the Axes. If that's not what you are looking for then you can refer to the Axes Properties documentation for the other related properties.
>> plot(1:10)
>> set(gca,'TickLength',[0 0])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2 次元および 3 次元プロット에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!