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.
我在 GUI 上使用axes1来显示图像。但是,我不知道如何使axes1上的标签不可见。 有任何想法吗?
只需设置 XTick 和 YTick 属性:
a = axes(); plot(1:10,1:10); set(a,'XTick',[],'YTIck',[])