www.gusucode.com > mbcexpr 工具箱 matlab 源码程序 > mbcexpr/@cgmswitchexpr/charlistshort.m

    function str = charlistshort(obj)
%CHARLISTSHORT Cgmswitchexpr charlistshort method
%
%  STR = CHARLISTSHORT(OBJ) returns a recursive string describing this
%  expression.

%  Copyright 2000-2004 The MathWorks, Inc. and Ford Global Technologies, Inc.


if isempty(obj)
    str = '';
else
    str = getname(obj);
end