グラフ上の目盛りを消す方法ありますか。

 채택된 답변

Atsushi Ueno
Atsushi Ueno 2021년 9월 11일

1 개 추천

댓글 수: 1

高祥 袁
高祥 袁 2021년 9월 11일
とても親切に解答してくれてありがとうございます。

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Hernia Baby
Hernia Baby 2021년 9월 11일

1 개 추천

Axesのプロパティ の TickLengthを長さ0にしました
x = 0:1/100:1;
y = sin(2*pi*x);
plot(x,y)
ax = gca;
ax.TickLength= [0 0];

댓글 수: 1

高祥 袁
高祥 袁 2021년 9월 11일
解答ありがとうございます。

댓글을 달려면 로그인하십시오.

Atsushi Ueno
Atsushi Ueno 2021년 9월 11일

0 개 추천

x = 0:pi/100:pi * 2; y = sin(x); plt = plot(x,y);
set(gca,'TickLength',[0 0]);

제품

태그

질문:

2021년 9월 11일

댓글:

2021년 9월 11일

Community Treasure Hunt

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

Start Hunting!