Changes In Branch origin/numerical-algebraic-solution Through [e96b3471d0] Excluding Merge-Ins
This is equivalent to a diff from 100c579558 to e96b3471d0
|
2001-05-04
| ||
| 04:07:24 |
Numerical solution of algebraic equations. sys_ae.cc written for unsolved inputs. Solution of equations using hybrd from MINPACK (as used by Octave fsolve). check-in: 2640c1bcbb user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
|
2001-05-01
| ||
| 14:16:06 | New P+D controller for collocated use and effort output check-in: bb4060a00e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2001-04-30
| ||
| 03:02:53 | Created branch numerical-algebraic-solution check-in: e96b3471d0 user: gawthrop@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
| 03:02:52 | Stripped template stuff. check-in: 100c579558 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2001-04-28
| ||
| 03:38:36 | Refined selection of matching patterns - checks for exact match. check-in: 9b7ef81b4b user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Deleted CVSROOT/checkoutlist version [3854d49239].
Deleted CVSROOT/commitinfo version [85654ac9a8].
Deleted CVSROOT/config version [28e7a42550].
Deleted CVSROOT/cvswrappers version [9d41597c29].
Deleted CVSROOT/editinfo version [dfa5fb459c].
Deleted CVSROOT/loginfo version [4503d4cd47].
Deleted CVSROOT/modules version [84b74e5335].
Deleted CVSROOT/notify version [2a5259e3c5].
Deleted CVSROOT/rcsinfo version [c276b88ba1].
Deleted CVSROOT/taginfo version [364dad5373].
Deleted CVSROOT/verifymsg version [cbc796537d].
Deleted mttroot/CVSROOT/checkoutlist version [3854d49239].
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 [4503d4cd47].
Deleted mttroot/CVSROOT/modules version [84b74e5335].
Deleted mttroot/CVSROOT/notify version [2a5259e3c5].
Deleted mttroot/CVSROOT/rcsinfo version [c276b88ba1].
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;
|