Changeset 960 for trunk/src/series/time_series.m
- Timestamp:
- Jun 25, 2016, 11:20:40 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/time_series.m
r924 r960 153 153 NomType=Param.InputTable(:,4); 154 154 FileExt=Param.InputTable(:,5); 155 155 156 hdisp=disp_uvmat('WAITING...','checking the file series',checkrun); 157 % gives the series of input file names and indices set by the input parameters: 156 158 [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param); 157 if ~isempty(hdisp),delete(hdisp),end;158 %%%%%%%%%%%%159 % The cell array filecell is the list of input file names, while160 159 % filecell{iview,fileindex}: 161 160 % iview: line in the table corresponding to a given file series 162 % fileindex: file index with in the file series,163 % i1_series(iview,ref_j,ref_i)... are the corresponding arrays of indices i1,i2,j1,j2, depending on the input line iview and the two reference indices ref_i,ref_j 161 % fileindex: file index with i and j reshaped as a 1D array 162 % i1_series(iview,ref_j,ref_i)... are the corresponding arrays of indices i1,i2,j1,j2, depending on the input line iview and the two reference indices ref_i,ref_j 164 163 % i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices 165 %%%%%%%%%%%% 166 nbview=numel(i1_series);%number of input file series (lines in InputTable) 167 nbfield_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices) 168 nbfield_i=size(i1_series{1},2); %nb of fields for the i index 169 nbfield=nbfield_j*nbfield_i; %total number of fields 164 if ~isempty(hdisp),delete(hdisp),end;%end the waiting display 165 166 NbView=numel(i1_series);%number of input file series (lines in InputTable) 167 NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices) 168 NbField_i=size(i1_series{1},2); %nb of fields for the i index 169 NbField=NbField_j*NbField_i; %total number of fields 170 170 171 171 %% determine the file type on each line from the first input file
Note: See TracChangeset
for help on using the changeset viewer.