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

13 Ansichten (letzte 30 Tage)
Masaki Nakamori
Masaki Nakamori am 28 Jan. 2021
グラフの目盛りの数字だけ残し、グラフの内向きに表示される目盛りだけ削除する方法はありますでしょうか。

Akzeptierte Antwort

Srivardhan Gadila
Srivardhan Gadila am 30 Jan. 2021
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])

Weitere Antworten (0)

Kategorien

Mehr zu 2 次元および 3 次元プロット finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!