Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
533da0b258af69cc0bdf0f1da9773607 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-27 12:50:43 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-30
| ||
09:35:10 | Fixed problem with global variable in function. check-in: c6de5a3480 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-08-27
| ||
12:50:43 | Initial revision check-in: 533da0b258 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:08:44 | Initial revision check-in: a7f1bb8b6c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/args2arg.m version [0679a2d0ae].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | function arg = args2arg(args,n) % args2arg - pulls the nth argument from a comma-separated list. % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function args2arg.m % arg = args2arg(args,n) % Copyright (c) P.J. Gawthrop, 1996. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Field separator FS = ','; arg = ''; 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 = args(args_count); if ch==FS break; end; arg(arg_count) = ch; end; end; |