0001 function s = smat2f_jd(s) 0002 0003 0004 0005 for i = 1:length(s) 0006 0007 c = s(i); 0008 0009 if c == 'e' 0010 0011 s(i) = 'd'; 0012 0013 end 0014 0015 end 0016