Ignore:
Timestamp:
Apr 29, 2014, 10:10:30 AM (10 years ago)
Author:
sommeria
Message:

a few bug repairs

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'.
    22%------------------------------------------------------------------------
    33% [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param)
     
    1515function [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param)
    1616
    17 filecell={};i1_series={};i2_series={};j1_series={};j2_series={};
     17filecell={};
    1818InputTable=Param.InputTable;
    1919first_i=Param.IndexRange.first_i;
    2020incr_i=Param.IndexRange.incr_i;
    2121last_i=Param.IndexRange.last_i;
    22 % ref_i=first_i:incr_i:last_i;
    23 %ref_j=[];
    2422first_j=[];last_j=[];incr_j=1;%default
    2523if isfield(Param.IndexRange,'first_j')&& isfield(Param.IndexRange,'last_j')
     
    3230
    3331%% determine the list of input file names
    34 nbmissing=0;
     32% nbmissing=0;
    3533NbView=size(InputTable,1);
    3634i1_series=cell(NbView,1);% initiate index series with empty cells
Note: See TracChangeset for help on using the changeset viewer.