Ignore:
Timestamp:
Jun 25, 2016, 11:20:40 AM (8 years ago)
Author:
sommeria
Message:

aver_stat modified to deal with volume slices

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/time_series.m

    r924 r960  
    153153NomType=Param.InputTable(:,4);
    154154FileExt=Param.InputTable(:,5);
     155
    155156hdisp=disp_uvmat('WAITING...','checking the file series',checkrun);
     157% gives the series of input file names and indices set by the input parameters:
    156158[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, while
    160159% filecell{iview,fileindex}:
    161160%        iview: line in the table corresponding to a given file series
    162 %        fileindex: file index within  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 
    164163% 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
     164if ~isempty(hdisp),delete(hdisp),end;%end the waiting display
     165
     166NbView=numel(i1_series);%number of input file series (lines in InputTable)
     167NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
     168NbField_i=size(i1_series{1},2); %nb of fields for the i index
     169NbField=NbField_j*NbField_i; %total number of fields
    170170
    171171%% determine the file type on each line from the first input file
Note: See TracChangeset for help on using the changeset viewer.