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

    function str = charlistshort(relexp)
%CHARLISTSHORT  Short description of expression method.
%
%  STR = CHARLISTSHORT(OBJ) returns a short recursive string describing
%  this expression.

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


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