⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dellbls6.m

📁 vTools is a toolbox for Matlab 5.3 developed within the Department of Electrical Systems and A
💻 M
字号:
function dellbls6()

% delete labels of ltiplots in version 6
% Giampy June 2001 

versione=version;
if str2num(versione(1:3))>5.3,

    chs=get(get(gca,'parent'),'children');
    for i=1:size(chs,1),
        if strcmp(get(chs(i),'type'),'uicontextmenu'),
            roj=get(chs(i),'userdata');
            if ~isempty(roj), pvset(roj,'Title','','Xlabel','','Ylabel',''); end
        end
    end

    set(get(gca,'Title'),'Visible','on');
    set(get(gca,'Xlabel'),'Visible','on');
    set(get(gca,'Ylabel'),'Visible','on');
    
else
    
    xlabel('');ylabel('');title('');
    
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -