source: trunk/src/get_file_series.m @ 870

Last change on this file since 870 was 863, checked in by sommeria, 9 years ago

civ2vel3C_introduced

File size: 7.5 KB
Line 
1%'get_file_series': determine the list of input file names and file indices for functions called by 'series'.
2%------------------------------------------------------------------------
3% [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param)
4%
5% OUTPUT:
6% filecell{iview,fileindex}: cell array representing the list of file names
7%        iview: line in the table corresponding to a given file series
8%        fileindex: file index within  the file series,
9% 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
10% i1_series{iview}(fileindex) expresses the same indices as a 1D array in file indices
11%
12% INPUT:
13% Param: structure of input parameters as read from the GUI series (by the function read_GUI)
14
15%=======================================================================
16% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
17%   http://www.legi.grenoble-inp.fr
18%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
19%
20%     This file is part of the toolbox UVMAT.
21%
22%     UVMAT is free software; you can redistribute it and/or modify
23%     it under the terms of the GNU General Public License as published
24%     by the Free Software Foundation; either version 2 of the license,
25%     or (at your option) any later version.
26%
27%     UVMAT is distributed in the hope that it will be useful,
28%     but WITHOUT ANY WARRANTY; without even the implied warranty of
29%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30%     GNU General Public License (see LICENSE.txt) for more details.
31%=======================================================================
32
33function [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param)
34
35filecell={};
36InputTable=Param.InputTable;
37first_i=Param.IndexRange.first_i;
38incr_i=Param.IndexRange.incr_i;
39last_i=Param.IndexRange.last_i;
40first_j=[];last_j=[];incr_j=1;%default
41if isfield(Param.IndexRange,'first_j')&& isfield(Param.IndexRange,'last_j')
42    first_j=Param.IndexRange.first_j;
43    last_j=Param.IndexRange.last_j;
44end
45if isfield(Param.IndexRange,'incr_j')
46    incr_j=Param.IndexRange.incr_j;
47end
48
49%% determine the list of input file names
50% nbmissing=0;
51NbView=size(InputTable,1);
52i1_series=cell(NbView,1);% initiate index series with empty cells
53i2_series=cell(NbView,1);
54j1_series=cell(NbView,1);
55j2_series=cell(NbView,1);
56for iview=1:NbView
57    r.mode='';
58    if isfield (Param.IndexRange,'PairString')
59        if ischar(Param.IndexRange.PairString)
60            Param.IndexRange.PairString={Param.IndexRange.PairString};
61        end
62        if ~isempty(Param.IndexRange.PairString{iview,1})
63        r=regexp(Param.IndexRange.PairString{iview,1},'(?<mode>(Di=)|(Dj=)) -*(?<num1>\d+)\|(?<num2>\d+)','names');%look for mode=Dj or Di
64        if isempty(r)
65            r=regexp(Param.IndexRange.PairString{iview,1},'(?<num1>\d+)(?<mode>-)(?<num2>\d+)','names');%look for burst pairs
66        end
67        end
68        % TODO case of free pairs:
69        %r=regexp(pair_string,'.*\D(?<num1>[\d+|*])(?<delim>[-||])(?<num2>[\d+|*])','names');
70    end
71    if isempty(r)||isempty(r.mode)
72        r(1).num1='';
73        r(1).num2='';
74        if isfield (Param.IndexRange,'PairString') && strcmp(Param.IndexRange.PairString{iview,1},'j=*-*')
75            r(1).mode='*-*';
76        else
77            r(1).mode='';
78        end
79    end
80   
81    if isempty(incr_i) || isempty(incr_j) || isequal(r(1).mode,'*-*')|| isequal(r(1).mode,'*|*')% free pairs or increment
82        FilePath=fullfile(InputTable{iview,1},InputTable{iview,2});
83        fileinput=[InputTable{iview,3} InputTable{iview,4} InputTable{iview,5}];
84        [tild,tild,tild,i1_series{iview},i2_series{iview},j1_series{iview},j2_series{iview},NomType,FileInfo,MovieObject,...
85            i1_input,i2_input,j1_input,j2_input]=find_file_series(FilePath,fileinput);
86        i1_series{iview}=squeeze(i1_series{iview}(1,:,:)); %select first  pair index as ordered by find_file_series
87        i2_series{iview}=squeeze(i2_series{iview}(1,:,:)); %select first  pair index as ordered by find_file_series
88        j1_series{iview}=squeeze(j1_series{iview}(1,:,:)); %first  pair index
89        j2_series{iview}=squeeze(j2_series{iview}(1,:,:)); %second  pair index
90        if isempty(incr_i)
91            if isempty(first_j) || isempty(incr_j) % no j index or no defined increment for j
92                ref_j=find(max(i1_series{iview},[],2));
93                ref_i=find(max(i1_series{iview},[],1));
94                ref_i=ref_i-1;
95                ref_j=ref_j-1;
96                ref_i=ref_i(ref_i>=first_i & ref_i<=last_i);
97                ref_j=ref_j(ref_j>=first_j & ref_j<=last_j);
98            else
99                ref_j=first_j:incr_j:last_j;
100                ref_i=find(max(i1_series{iview}(:,ref_j),[],1));
101                ref_i=ref_i-1;
102                ref_i=ref_i(ref_i>=first_i & ref_i<=last_i);
103            end
104        else
105            ref_i=first_i:incr_i:last_i;%default
106            if isempty(first_j) ||isempty(incr_j)% no j index or no defined increment for j
107                ref_j=find(max(i1_series{iview},[],2));
108                ref_j=ref_j-1;
109                ref_j=ref_j(ref_j>=first_j & ref_j<=last_j);
110            else
111                ref_j=first_j:incr_j:last_j;
112            end
113        end
114        if isempty(ref_j)
115            i1_series{iview}=i1_series{iview}(2,ref_i+1);
116            if ~isempty(i2_series{iview})
117                i2_series{iview}=i2_series{iview}(2,ref_i+1);
118            end
119        else
120            i1_series{iview}=i1_series{iview}(ref_j+1,ref_i+1);
121            if ~isempty(i2_series{iview})
122                i2_series{iview}=i2_series{iview}(ref_j+1,ref_i+1);
123            end
124        end
125        if ~isempty(j1_series{iview})
126            j1_series{iview}=j1_series{iview}(ref_j+1,ref_i+1);
127            if ~isempty(j2_series{iview})
128                j2_series{iview}=j2_series{iview}(ref_j+1,ref_i+1);
129            end
130        end
131    else
132        ref_i=first_i:incr_i:last_i;%default
133        ref_j=first_j:incr_j:last_j;%default
134        [i1_series{iview},i2_series{iview},j1_series{iview},j2_series{iview}]=find_file_indices(ref_i,ref_j,str2num(r.num1),str2num(r.num2),r.mode);
135    end
136    %     if ~isequal(r(1).mode,'*-*')% imposed pairs or single i and/or j index
137    %         [i1_series{iview},i2_series{iview},j1_series{iview},j2_series{iview}]=find_file_indices(ref_i,ref_j,str2num(r.num1),str2num(r.num2),r.mode);
138    %     end
139   
140    %list of files
141    i2=[];j1=[];j2=[];
142    for ifile=1:numel(i1_series{iview})
143        i1=i1_series{iview}(ifile);
144        if ~isempty(i2_series{iview})
145            i2=i2_series{iview}(ifile);
146        end
147        if ~isempty(j1_series{iview})
148            j1=j1_series{iview}(ifile);
149        end
150        if ~isempty(j2_series{iview})
151            j2=j2_series{iview}(ifile);
152        end
153        filecell{iview,ifile}=fullfile_uvmat(InputTable{iview,1},InputTable{iview,2},InputTable{iview,3},InputTable{iview,5},InputTable{iview,4},i1,i2,j1,j2);
154    end
155end
156
157
158function [i1_series,i2_series,j1_series,j2_series]=find_file_indices(ref_i,ref_j,num1,num2,mode)
159i1_series=ref_i;%default
160j1_series=[];
161if ~isempty(ref_j)
162    [i1_series,j1_series]=meshgrid(ref_i,ref_j);
163end
164i2_series=i1_series;
165j2_series=j1_series;
166
167switch mode
168    case 'Di='  %  case 'series(Di)')
169        i1_series=i1_series-num1;
170        i2_series=i2_series+num2;
171    case 'Dj='  %  case 'series(Dj)'
172        j1_series=j1_series-num1;
173        j2_series=j2_series+num2;
174    case '-'  % case 'bursts'
175        j1_series=num1*ones(size(i1_series));
176        j2_series=num2*ones(size(i1_series));
177end
Note: See TracBrowser for help on using the repository browser.