Index: mttroot/mtt/lib/comp/simple/SS_eqn.m ================================================================== --- mttroot/mtt/lib/comp/simple/SS_eqn.m +++ mttroot/mtt/lib/comp/simple/SS_eqn.m @@ -29,10 +29,13 @@ ## ############################################################### ## ### Version control history ## ############################################################### ## ### $Id$ ## ### $Log$ + ## ### Revision 1.27 2005/03/21 10:34:47 gawthrop + ## ### Tidied. + ## ### ## ### Revision 1.26 2004/08/29 13:11:21 geraint ## ### Writes MTTyz vector in the same format as MTTx and MTTy: MTTyz($d,1) ## ## ## ### Revision 1.25 2003/01/07 18:09:21 geraint ## ### More informative error message. @@ -127,11 +130,11 @@ ## If its a numbered port: ## cr contains 'MTT_port' ## arg contains port number if (strcmp(cr,"SS")) # Then its the standard file - a = split(args,",") + a = char(strsplit(args,",")) [N,M]=size(a); if (N~=2) # Must have 2 arguments mtt_error(sprintf("SS should have 2 args not %i", N)); endif effort_attribute = deblank(a(1,:)); Index: mttroot/mtt/lib/comp/simple/SS_seqn.m ================================================================== --- mttroot/mtt/lib/comp/simple/SS_seqn.m +++ mttroot/mtt/lib/comp/simple/SS_seqn.m @@ -10,11 +10,11 @@ N = mtt_check_sigs (outsig,insigs); full_name = sprintf("%s%s%s", Name,delim,name); ## Get the special attibutes for SS - attrib_name = split(arg,","); + attrib_name = char(strsplit(arg,",")); [N_a,M_a]=size(attrib_name); if (N_a~=2) # Must have 2 arguments mtt_error(sprintf("SS should have 2 args not %i", N_a)); end;