Overview
| Comment: | Created branch numerical-algebraic-solution |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/numerical-algebraic-solution | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
e96b3471d08edbaa96cfea46f8e2570d |
| User & Date: | gawthrop@users.sourceforge.net on 2001-04-30 03:02:53.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
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-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 | |
Changes
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 | 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;
|