Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在我的绘图上放置网格线,但关闭轴上的编号标记。
我首先使用以下方法打开网格线:
grid on;
但是,当我摆脱使用的标记时
set(gca,'YTick',[]); % Get rid of markers
y 网格关闭!我怎样才能让它留下来?
我不知道是否有更优雅的解决方案,但您可以将刻度标签设置为空字符串。
set(gca, 'YTickLabel', [])
这样,刻度线仍然存在。
弄清楚了:
您必须使用以下方法关闭标签:
set(gca,'yticklabel',[])