How to remove axis in MATLAB

前端 未结 1 1904
你的背包
你的背包 2021-01-18 18:47

axis off Not working.

function displayResults(filename,hObject, eventdata, handles)
% Open \'filename\' file... for reading...
fid = fopen(file         


        
相关标签:
1条回答
  • 2021-01-18 19:28

    insert the following at the end of each loop:

    set(ax, 'Visible','off')
    

    or you can do this once for all axes in the figure:

    set(findobj(gcf, 'type','axes'), 'Visible','off')
    
    0 讨论(0)
提交回复
热议问题