comempty.m

来自「Proakis《contemporarycommunication system」· M 代码 · 共 16 行

M
16
字号
function out = comempty(vaa, handle, default);

%       Copyright (c) 1995-96 by The MathWorks, Inc.
%       $Revision: 1.1 $  $Date: 1996/04/01 17:53:00 $

if isempty(vaa)
    out = default;
    if isstr(out)
        set(handle,'String',out,'ForegroundColor',[1 0 0])
    else
        set(handle,'String',mat2str(out),'ForegroundColor',[1 0 0])
    end;
else
    out = vaa;
end;

⌨️ 快捷键说明

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