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.
我在 MATLAB 中有一个图,我想从中删除xticks 但保留xticklabels。如果我只是删除xtick这样的:
xtick
xticklabel
set(gca, 'XTick', []);
...然后标签也消失了。有没有办法保留标签,而不必使用文本框手动重新创建它们?我想过尝试使xticks 的长度为零,但这个答案表明xtick属性不能被独立控制。
尝试修改TickLength属性:
TickLength
set(gca, 'Ticklength', [0 0])