座標軸の目盛りの数値だけ非表示にする方法はありますか?
48 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MathWorks Support Team
il 1 Apr 2020
Risposto: MathWorks Support Team
il 1 Apr 2020
Figure にグラフィックスを表示した際、座標軸(Axes) の x,y 座標の目盛りの数値の値だけ非表示にすることができるか、教えてください。
目盛り自体は表示したままにしたいです。
Risposta accettata
MathWorks Support Team
il 1 Apr 2020
Axes オブジェクト(座標軸)の目盛りの数値の文字列は、XTickLabel や YTickLabel プロパティで管理されています。
よって、その値を空のセル配列を設定することで、数値のみ削除されます。
x = linspace(0,10);
y = x.^2;
plot(x,y)
ax = gca;
ax.YTickLabel = cell(size(ax.YTickLabel)); % Y 軸の目盛り上の数値を削除
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su グラフィックス オブジェクトのプロパティ in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!