Removing Xaxis and Yaxis values
조회 수: 580 (최근 30일)
이전 댓글 표시
Hey I have plotted a graph but I want to remove the values on the axis, I don't want the numbers to show
댓글 수: 0
채택된 답변
추가 답변 (1개)
DanielFromIllinois
2025년 3월 11일
set(ax,'xticklabel',[])
You can also use set(ax,'XTick',[]) but then you lose the ability to still turn the xgrid on. The grid will draw lines at your ticks specified by 'XTick'.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!