Changeset 17 for trunk/src/private
- Timestamp:
- Feb 18, 2010, 7:37:48 PM (15 years ago)
- Location:
- trunk/src/private
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/private/ListDir.m
r8 r17 1 1 %'ListDir': scan the structure of the directory tree (for dataview.m) 2 2 %------------------------------------------------------------------------ 3 % function [ListDevices,ListRecords,ListXml,List]=ListDir(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in) 4 % 5 % 6 % OUTPUT: 7 % ListDevices: list of Devices 8 % ListRecords: list of records 9 % ListXml: list of xml file names 10 % List: structure representing the tree structure 11 % 12 %INPUT 13 % CurrentPath: full name (including path) to the input campaign (or subcampaign), we assume that 14 % data are organised as (sub)campaign/Experiment/Device/(Record/)/file .xml 15 % ListExperiments: list of experiments to scan (cell of names) 16 % ListDevices_in: list of devices to scan (cell of names) 17 % ListRecords_in: list of records to scan (cell of names) 18 3 19 function [ListDevices,ListRecords,ListXml,List]=ListDir(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in) 4 20 … … 73 89 end 74 90 75 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 91 92 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 93 % ListDevices: list of devices already scanned 94 % ListDevices_in: list of input devices to scan 76 95 function [testnew,testselect]=test_select(name,ListDevices,ListDevices_in) 96 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 77 97 if ~isempty(ListDevices_in) 78 98 testnew=0; -
trunk/src/private/read_geometry_calib.m
r8 r17 18 18 nb_defining_points=length(Coord_cell); 19 19 iline=0; 20 data.Coord=[];%default 20 21 for i=1:nb_defining_points 21 22 coord_str=Coord_cell{i};%character string of line number i
Note: See TracChangeset
for help on using the changeset viewer.