Index: mttroot/mtt/bin/trans/m/split_port.m ================================================================== --- mttroot/mtt/bin/trans/m/split_port.m +++ mttroot/mtt/bin/trans/m/split_port.m @@ -4,16 +4,19 @@ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % $Id$ % % $Log$ +% % Revision 1.1 1998/04/16 14:08:00 peterg +% % Initial revision +% % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% subport = ""; - raw_subport = split(port_name, ','); # Find the components of the vector + raw_subport = char(strsplit(port_name, ',')); # Find the components of the vector # port [n,m] = size(raw_subport); # Number of ports for i = 1:n s = deblank(raw_subport(i,:));