グラフ上の目盛りを消す方法ありますか。
52 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Más respuestas (2)
Hernia Baby
el 11 de Sept. de 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
el 11 de Sept. de 2021
x = 0:pi/100:pi * 2; y = sin(x); plt = plot(x,y);
set(gca,'TickLength',[0 0]);
0 comentarios
Ver también
Categorías
Más información sobre Grid Lines, Tick Values, and Labels en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!