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: |
7da8e4cff1119b585c6be83027c0fb6a |
User & Date: | gawthrop@users.sourceforge.net on 1998-01-23 09:22:05 |
Other Links: | branch diff | manifest | tags |
Context
1998-01-23
| ||
09:23:00 | Fixed typing error in (length(j)==1) check-in: f7d79e097c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:22:05 | Initial revision check-in: 7da8e4cff1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-01-22
| ||
13:25:55 | Initial revision check-in: 5eda557e20 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/name_in_list.m version [aa3879df3d].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 index = name_in_list(name,list) % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function name_in_list.m % Finds name in list and returns index -- zero if not found % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% [N,M] = size(list); if N<1 error('list must have at least one element'); end; index = 0; for i = 1:N name,list(i,:) j = findstr(name,list(i,:)) if length(j==1) if j(1)==1 if index==0 index = i; else index = [index i]; end end end; end; |