Last change
on this file since 1179 was
1179,
checked in by sommeria, 4 weeks ago
|
a few bug repairs and cleaning
|
File size:
992 bytes
|
Line | |
---|
1 | %% check list of fcts in main folder |
---|
2 | [~,~,~,list_fct]=check_files; |
---|
3 | for ilist=1:numel(list_fct) |
---|
4 | [~, pList] = matlab.codetools.requiredFilesAndProducts(list_fct{ilist}); |
---|
5 | disp([list_fct{ilist} ': ' {pList.Name}]) |
---|
6 | end |
---|
7 | |
---|
8 | str=which('UVMAT'); |
---|
9 | path_uvmat=fileparts(str) |
---|
10 | |
---|
11 | %% check list of fcts in transform_field |
---|
12 | dir_fct=fullfile(path_uvmat,'transform_field'); |
---|
13 | list_fct=dir(dir_fct); |
---|
14 | for ilist=1:numel(list_fct) |
---|
15 | if ~isempty(regexp(list_fct(ilist).name,'.m$', 'once')) |
---|
16 | [~, pList] = matlab.codetools.requiredFilesAndProducts(fullfile(dir_fct,list_fct(ilist).name)); |
---|
17 | disp([list_fct(ilist).name ': ' {pList.Name}]) |
---|
18 | end |
---|
19 | end |
---|
20 | |
---|
21 | %% check list of fcts in series |
---|
22 | dir_fct=fullfile(path_uvmat,'series'); |
---|
23 | list_fct=dir(dir_fct); |
---|
24 | for ilist=1:numel(list_fct) |
---|
25 | if ~isempty(regexp(list_fct(ilist).name,'.m$', 'once')) |
---|
26 | [~, pList] = matlab.codetools.requiredFilesAndProducts(fullfile(dir_fct,list_fct(ilist).name)); |
---|
27 | disp([list_fct(ilist).name ': ' {pList.Name}]) |
---|
28 | end |
---|
29 | end |
---|
30 | |
---|
31 | 'END SCRIPT' |
---|
Note: See
TracBrowser
for help on using the repository browser.