Changeset 1039
- Timestamp:
- May 1, 2018, 5:42:35 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/browse_data.m
r1037 r1039 459 459 % ListRecords=ListRecords(Value); 460 460 % end 461 % [ListDevices,ListRecords,ListXml,List]= ListDir(CurrentPath,ListExperiments,ListDevices,ListRecords);461 % [ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices,ListRecords); 462 462 % ListXml=get(handles.ListXml,'String'); 463 463 % Value=get(handles.ListXml,'Value'); -
trunk/src/check_files.m
r1033 r1039 49 49 'create_grid';...% called by the GUI geometry_calib to create a physical grid 50 50 'create_grid.fig';...% GUI corresponding to create_grid.m 51 'dir_scan';... % scan the structure of the directory tree (for editxml.m) 51 52 'disp_uvmat';...% display a message using msgbox_uvmat or on the log file in batch mode 52 53 'editxml';...% display and edit xml files using a xls schema … … 70 71 'interp2_uvmat';...% linearly interpolate an image or scalar defined on a regular grid 71 72 'keyboard_callback';... % function activated when a key is pressed on the keyboard 72 'ListDir';... % scan the structure of the directory tree (for editxml.m)73 73 'mask_proj';...% restrict input fields to a mask region, set to 0 outside 74 74 'mouse_down';% function activated when the mouse button is pressed on a figure (callback for 'WindowButtonDownFcn') -
trunk/src/dir_scan.m
r1038 r1039 1 %' ListDir': scan the structure of the directory tree (for browse_data.m)1 %'dir_scan': scan the structure of the directory tree (for browse_data.m) 2 2 %------------------------------------------------------------------------ 3 % function [ListDevices,ListRecords,ListXml,List]= ListDir(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in)3 % function [ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in) 4 4 % 5 5 % … … 35 35 %======================================================================= 36 36 37 function [ListDevices,ListRecords,ListXml,List]= ListDir(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in)37 function [ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices_in,ListRecords_in) 38 38 39 39 ListRecords={}; -
trunk/src/editxml.m
r1037 r1039 1027 1027 ListRecords=ListRecords(Value); 1028 1028 end 1029 [ListDevices,ListRecords,ListXml,List]= ListDir(CurrentPath,ListExperiments,ListDevices,ListRecords);1029 [ListDevices,ListRecords,ListXml,List]=dir_scan(CurrentPath,ListExperiments,ListDevices,ListRecords); 1030 1030 ListXml=get(hhdataview.ListXml,'String'); 1031 1031 Value=get(hhdataview.ListXml,'Value');
Note: See TracChangeset
for help on using the changeset viewer.