Changeset 757 for trunk/src/get_file_series.m
- Timestamp:
- Apr 29, 2014, 10:10:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/get_file_series.m
r754 r757 1 %'get_file_series': determine the list of file names and file indices for functions called by 'series'.1 %'get_file_series': determine the list of input file names and file indices for functions called by 'series'. 2 2 %------------------------------------------------------------------------ 3 3 % [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param) … … 15 15 function [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param) 16 16 17 filecell={}; i1_series={};i2_series={};j1_series={};j2_series={};17 filecell={}; 18 18 InputTable=Param.InputTable; 19 19 first_i=Param.IndexRange.first_i; 20 20 incr_i=Param.IndexRange.incr_i; 21 21 last_i=Param.IndexRange.last_i; 22 % ref_i=first_i:incr_i:last_i;23 %ref_j=[];24 22 first_j=[];last_j=[];incr_j=1;%default 25 23 if isfield(Param.IndexRange,'first_j')&& isfield(Param.IndexRange,'last_j') … … 32 30 33 31 %% determine the list of input file names 34 nbmissing=0;32 % nbmissing=0; 35 33 NbView=size(InputTable,1); 36 34 i1_series=cell(NbView,1);% initiate index series with empty cells
Note: See TracChangeset
for help on using the changeset viewer.