在MatlabFigure中,我希望在保持绘图框打开的情况下,仅从顶轴和右轴删除记号。
我知道如果我把绘图框关掉,上面的记号就会消失但是,这不是我想要的换言之,我只想在底部和左侧保留勾号,同时,希望保持绘图框处于打开状态。
最佳答案
我的解决方法类似于@j-u cubic命题:
plot(1:10)
% get handle to current axes
a = gca;
% set box property to off and remove background color
set(a,'box','off','color','none')
% create new, empty axes with box but without ticks
b = axes('Position',get(a,'Position'),'box','on','xtick',[],'ytick',[]);
% set original axes as active
axes(a)
% link axes in case of zooming
linkaxes([a b])
关于matlab - Matlab只删除顶部和右侧的勾选框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15553720/