Overview
Comment: | Created branch global-optimisation |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | origin/global-optimisation | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d653bc1d06aa5e811e4471ae8590c472 |
User & Date: | gawthrop@users.sourceforge.net on 2002-09-03 19:34:16.000 |
Other Links: | branch diff | manifest | tags |
Context
2002-09-03
| ||
23:44:43 | adding global optimisation (-optg). check-in: 4b43bcffa2 user: geraint@users.sourceforge.net tags: origin/global-optimisation, trunk | |
19:34:16 | Created branch global-optimisation check-in: d653bc1d06 user: gawthrop@users.sourceforge.net tags: origin/global-optimisation, trunk | |
19:34:15 | Write EdX regardless - csex is needed to create ode when not optimised. check-in: 30895e1289 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Deleted CVSROOT/checkoutlist version [db1d2d9b69].
Deleted CVSROOT/commitinfo version [85654ac9a8].
Deleted CVSROOT/config version [28e7a42550].
Deleted CVSROOT/cvswrappers version [9d41597c29].
Deleted CVSROOT/editinfo version [dfa5fb459c].
Deleted CVSROOT/loginfo version [7508d75767].
Deleted CVSROOT/modules version [84b74e5335].
Deleted CVSROOT/notify version [2a5259e3c5].
Deleted CVSROOT/rcsinfo version [c276b88ba1].
Deleted CVSROOT/syncmail version [167b7fa412].
Deleted CVSROOT/taginfo version [364dad5373].
Deleted CVSROOT/verifymsg version [cbc796537d].
Deleted mttroot/CVSROOT/checkoutlist version [db1d2d9b69].
Deleted mttroot/CVSROOT/commitinfo version [85654ac9a8].
Deleted mttroot/CVSROOT/config version [28e7a42550].
Deleted mttroot/CVSROOT/cvswrappers version [9d41597c29].
Deleted mttroot/CVSROOT/editinfo version [dfa5fb459c].
Deleted mttroot/CVSROOT/loginfo version [f5255d5add].
Deleted mttroot/CVSROOT/modules version [84b74e5335].
Deleted mttroot/CVSROOT/notify version [2a5259e3c5].
Deleted mttroot/CVSROOT/rcsinfo version [c276b88ba1].
Deleted mttroot/CVSROOT/syncmail version [c9554ab114].
Deleted mttroot/CVSROOT/taginfo version [364dad5373].
Deleted mttroot/CVSROOT/verifymsg version [cbc796537d].
Modified mttroot/mtt/bin/trans/m/args2arg.m
from [88e206959b]
to [b6ee5ada28].
︙ | ︙ | |||
24 25 26 27 28 29 30 31 | % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Field separator if nargin<3 FS = ';'; end; | > > > > > > > > > > > > > > > > > > > > > > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Field separator if nargin<3 FS = ';'; end; arg = ''; if strcmp(args, '')==0 L = length(args); args_count = 0; for i=1:n arg_count = 0; arg = ''; if args_count == L break; end; while args_count < L args_count = args_count+1; arg_count = arg_count+1; ch = str2ch(args,args_count); if ch==FS break; end; arg = [arg ch]; end; end; end; |