www.gusucode.com > mbcmodels 工具箱 matlab 源码程序 > mbcmodels/@mbctransform/private/devectorize.m

    function gstr = devectorize(gstr)
%DEVECTORIZE undoes vectorize
%
% gstr = devectorize(gstr)

%  Copyright 2007 The MathWorks, Inc.

% SYM doesn't support .^,.*,./  operators
gstr= strrep(gstr,'.^','^');
gstr= strrep(gstr,'.*','*');
gstr= strrep(gstr,'./','/');
gstr= strrep(gstr,'.\','\');