グラフ上の目盛りを消す方法ありますか。
50 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
0 commentaires
Réponse acceptée
Plus de réponses (2)
Hernia Baby
le 11 Sep 2021
Axesのプロパティ の TickLengthを長さ0にしました
x = 0:1/100:1;
y = sin(2*pi*x);
plot(x,y)
ax = gca;
ax.TickLength= [0 0];
Atsushi Ueno
le 11 Sep 2021
x = 0:pi/100:pi * 2; y = sin(x); plt = plot(x,y);
set(gca,'TickLength',[0 0]);
0 commentaires
Voir également
Catégories
En savoir plus sur Grid Lines, Tick Values, and Labels dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!