www.gusucode.com > mbcmodels 工具箱 matlab 源码程序 > mbcmodels/@xregexportmodel/setsymbols.m

    function em = setsymbols(em , s)
%SETSYMBOLS set symbols for model
%
%	E = setsymbols(E,'namestr');

%  Copyright 2000-2007 The MathWorks, Inc. and Ford Global Technologies, Inc.
if ~iscellstr(s)
    error(message('mbc:xregexportmodel:InvalidArgument3'))
else
   em.symbols = s;
end