Changeset 19088
- Timestamp:
- 02/04/15 13:25:20 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/IdToName.m
r19049 r19088 1 1 function name=IdToName(id); 2 2 %IDTONAME- return name of test 3 % 4 % if id=0, the full list of test is returned 3 5 % 4 6 % Usage: 5 7 % name=IdToName(id); 8 9 if id==0, 10 flist=dir;%use dir, as it seems to act OS independent 11 list_ids=[]; 12 for i=1:numel(flist), 13 if ( strncmp(flist(i).name,'test',4) &... %File name must start with 'test' 14 strncmp(fliplr(flist(i).name),fliplr('.m'),2)&... %File name must end by '.m' 15 ~strcmp(flist(i).name,'test.m')) %File name must be different than 'test.m' 16 id=str2num(flist(i).name(5:end-2)); 17 if isempty(id), 18 disp(['WARNING: ignore file ' flist(i).name ]); 19 else 20 list_ids(end+1)=eval(flist(i).name(5:end-2)); %Keep test id only (skip 'test' and '.m') 21 end 22 end 23 end 24 list_ids=sort(list_ids); 25 for i=list_ids, 26 name=IdToName(i); 27 disp(['test ' num2str(i,'%5i\n') ' : ' name]); 28 end 29 return; 30 end 6 31 7 32 filename = ['test' num2str(id) '.m'];
Note:
See TracChangeset
for help on using the changeset viewer.