source: trunk/src/series/merge_proj.m @ 880

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

various bug fixes

File size: 21.1 KB
RevLine 
[573]1%'merge_proj': concatene several fields from series, can project them on a regular grid in phys coordinates
[457]2%------------------------------------------------------------------------
[464]3% function ParamOut=merge_proj(Param)
[457]4%------------------------------------------------------------------------
5%%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%%
[169]6%
7%OUTPUT
[596]8% ParamOut: sets options in the GUI series.fig needed for the function
[169]9%
10%INPUT:
[457]11% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
12% In batch mode, Param is the name of the corresponding xml file containing the same information
[596]13% when Param.Action.RUN=0 (as activated when the current Action is selected
14% in series), the function ouput paramOut set the activation of the needed GUI elements
[169]15%
[596]16% Param contains the elements:(use the menu bar command 'export/GUI config' in series to
17% see the current structure Param)
[457]18%    .InputTable: cell of input file names, (several lines for multiple input)
19%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
20%    .OutputSubDir: name of the subdirectory for data outputs
[474]21%    .OutputDirExt: directory extension for data outputs
[457]22%    .Action: .ActionName: name of the current activated function
23%             .ActionPath:   path of the current activated function
[596]24%             .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled   Matlab fct
25%             .RUN =0 for GUI input, =1 for function activation
26%             .RunMode='local','background', 'cluster': type of function  use
27%             
[457]28%    .IndexRange: set the file or frame indices on which the action must be performed
29%    .FieldTransform: .TransformName: name of the selected transform function
30%                     .TransformPath:   path  of the selected transform function
31%    .InputFields: sub structure describing the input fields withfields
[596]32%              .FieldName: name(s) of the field
[457]33%              .VelType: velocity type
34%              .FieldName_1: name of the second field in case of two input series
35%              .VelType_1: velocity type of the second field in case of two input series
[596]36%              .Coord_y: name of y coordinate variable
37%              .Coord_x: name of x coordinate variable
[457]38%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40
[810]41%=======================================================================
42% Copyright 2008-2014, LEGI UMR 5519 / CNRS UJF G-INP, Grenoble, France
43%   http://www.legi.grenoble-inp.fr
44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
45%
46%     This file is part of the toolbox UVMAT.
47%
48%     UVMAT is free software; you can redistribute it and/or modify
49%     it under the terms of the GNU General Public License as published
50%     by the Free Software Foundation; either version 2 of the license,
51%     or (at your option) any later version.
52%
53%     UVMAT is distributed in the hope that it will be useful,
54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
56%     GNU General Public License (see LICENSE.txt) for more details.
57%=======================================================================
58
[462]59function ParamOut=merge_proj(Param)
[29]60
[606]61%% set the input elements needed on the GUI series when the function is selected in the menu ActionName or InputTable refreshed
[592]62if isstruct(Param) && isequal(Param.Action.RUN,0)
[606]63    ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
[632]64    ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
[606]65    ParamOut.NbSlice='off'; %nbre of slices ('off' by default)
66    ParamOut.VelType='one';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
67    ParamOut.FieldName='one';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
68    ParamOut.FieldTransform = 'on';%can use a transform function
69    ParamOut.TransformPath=fullfile(fileparts(which('uvmat')),'transform_field');% path to transform functions (needed for compilation only)
70    ParamOut.ProjObject='on';%can use projection object(option 'off'/'on',
[635]71    ParamOut.Mask='on';%can use mask option   (option 'off'/'on', 'off' by default)
[592]72    ParamOut.OutputDirExt='.mproj';%set the output dir extension
[605]73    ParamOut.OutputFileMode='NbInput';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice
[716]74      %check the input files
75    first_j=[];
76    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
77    PairString='';
78    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
79    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
80    FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
81        Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
82    if ~exist(FirstFileName,'file')
83        msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist'])
[605]84    elseif isequal(size(Param.InputTable,1),1) && ~isfield(Param,'ProjObject')
[635]85        msgbox_uvmat('WARNING','You may need a projection object of type plane for merge_proj')
[605]86    end
[606]87    return
[29]88end
89
[457]90%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
[632]91ParamOut=[]; %default output
[592]92%% read input parameters from an xml file if input is a file name (batch mode)
93checkrun=1;
[457]94if ischar(Param)
[592]95    Param=xml2struct(Param);% read Param as input file (batch case)
96    checkrun=0;
[374]97end
[624]98hseries=findobj(allchild(0),'Tag','series');
99RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
100WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
[592]101
[624]102%% define the directory for result file (with path=RootPath{1})
103OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files
104
[550]105if ~isfield(Param,'InputFields')
106    Param.InputFields.FieldName='';
107end
[457]108
[577]109%% root input file type
[457]110RootPath=Param.InputTable(:,1);
111RootFile=Param.InputTable(:,3);
112SubDir=Param.InputTable(:,2);
113NomType=Param.InputTable(:,4);
114FileExt=Param.InputTable(:,5);
[374]115[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
[474]116%%%%%%%%%%%%
117% The cell array filecell is the list of input file names, while
118% filecell{iview,fileindex}:
[457]119%        iview: line in the table corresponding to a given file series
120%        fileindex: file index within  the file series,
121% 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
122% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
[474]123%%%%%%%%%%%%
[606]124% NbSlice=1;%default
125% if isfield(Param.IndexRange,'NbSlice')&&~isempty(Param.IndexRange.NbSlice)
126%     NbSlice=Param.IndexRange.NbSlice;
127% end
128NbView=numel(i1_series);%number of input file series (lines in InputTable)
129NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
130NbField_i=size(i1_series{1},2); %nb of fields for the i index
131NbField=NbField_j*NbField_i; %total number of fields
[457]132
[673]133%% determine the file type on each line from the first input file
[462]134ImageTypeOptions={'image','multimage','mmreader','video'};
135NcTypeOptions={'netcdf','civx','civdata'};
[606]136for iview=1:NbView
[462]137    if ~exist(filecell{iview,1}','file')
[668]138        disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun)
[462]139        return
140    end
[784]141    [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
[783]142    FileType{iview}=FileInfo{iview}.FileType;
[462]143    CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images
[880]144    if CheckImage{iview}
145        ParamIn{iview}=MovieObject{iview};
146    else
147        ParamIn{iview}=Param.InputFields;
148    end
[462]149    CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
150    if ~isempty(j1_series{iview})
151        frame_index{iview}=j1_series{iview};
152    else
153        frame_index{iview}=i1_series{iview};
154    end
[457]155end
[739]156if NbView >1 && max(cell2mat(CheckImage))>0 && ~isfield(Param,'ProjObject')
157    disp_uvmat('ERROR','projection on a common grid is needed to concatene images: use a Projection Object of type ''plane'' with ProjMode=''interp_lin''',checkrun)
158    return
159end
[457]160
161%% calibration data and timing: read the ImaDoc files
[470]162[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
163if size(time,1)>1
[457]164    diff_time=max(max(diff(time)));
[474]165    if diff_time>0
[676]166        disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time) ': the mean time is chosen in result'],checkrun)
[457]167    end   
168end
[676]169if ~isempty(errormsg)
[829]170    disp_uvmat('WARNING',errormsg,checkrun)
[676]171end
172time=mean(time,1); %averaged time taken for the merged field
[457]173
[409]174%% coordinate transform or other user defined transform
[606]175transform_fct='';%default fct handle
[478]176if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
[606]177        currentdir=pwd;
178        cd(Param.FieldTransform.TransformPath)
179        transform_fct=str2func(Param.FieldTransform.TransformName);
180        cd (currentdir)
[374]181end
[457]182%%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
183 % EDIT FROM HERE
[116]184
[457]185%% check the validity of  input file types
[606]186for iview=1:NbView
[673]187    if ~isequal(CheckImage{iview},1)&&~isequal(CheckNc{iview},1)
[668]188        disp_uvmat('ERROR','input set of input series: need  either netcdf either image series',checkrun)
[632]189        return
[464]190    end
[457]191end
[673]192
193%% output file type
194if min(cell2mat(CheckImage))==1 && (~Param.CheckObject || strcmp(Param.ProjObject.Type,'plane'))
195    FileExtOut='.png'; %image output (input and proj result = image)
196    for iview=1:NbView
197        BitDepth(iview)=FileInfo{iview}.BitDepth;
198    end
199    BitDepth=max(BitDepth);
200else
201    FileExtOut='.nc'; %netcdf output
202end
[880]203if isempty(j1_series{1})
204    NomTypeOut='_1';
205else
206    NomTypeOut='_1_1';
207end
[867]208%NomTypeOut=NomType;% output file index will indicate the first and last ref index in the series
[673]209RootFileOut=RootFile{1};
210for iview=2:NbView
211    if ~strcmp(RootFile{iview},RootFile{1})
212        RootFileOut='mproj';
213        break
214    end
215end
[457]216
[642]217%% mask (TODO: case of multilevels)
[668]218MaskData=cell(NbView,1);
[642]219if Param.CheckMask
[676]220    if ischar(Param.MaskTable)% case of a single mask (char chain)
221        Param.MaskTable={Param.MaskTable};
222    end
[668]223    for iview=1:numel(Param.MaskTable)
[673]224        if exist(Param.MaskTable{iview},'file')
225            [MaskData{iview},tild,errormsg] = read_field(Param.MaskTable{iview},'image');
226            if ~isempty(transform_fct) && nargin(transform_fct)>=2
227                MaskData{iview}=transform_fct(MaskData{iview},XmlData{iview});
228            end
[642]229        end
230    end
231end
232
[457]233%% Set field names and velocity types
[462]234%use Param.InputFields for all views
[457]235
[640]236%% MAIN LOOP ON FIELDS
[457]237%%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
[606]238% for i_slice=1:NbSlice
239%     index_slice=i_slice:NbSlice:NbField;% select file indices of the slice
240%     NbFiles=0;
241%     nbmissing=0;
[474]242
[457]243    %%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
[880]244tstart=tic; %used to record the computing time
[606]245for index=1:NbField
[626]246        update_waitbar(WaitbarHandle,index/NbField)
[642]247    if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue')
[624]248        disp('program stopped by user')
[606]249        return
250    end
251    %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
252    Data=cell(1,NbView);%initiate the set Data
[676]253    timeread=zeros(1,NbView);
[606]254    for iview=1:NbView
[880]255        %% reading input file(s)     
256        [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},ParamIn{iview},frame_index{iview}(index));
[606]257        if ~isempty(errormsg)
[746]258            disp_uvmat('ERROR',['ERROR in merge_proj/read_field/' errormsg],checkrun)
[614]259            return
[457]260        end
[857]261        ListVar=Data{iview}.ListVarName;
262        for ilist=1:numel(ListVar)
263            Data{iview}.(ListVar{ilist})=double(Data{iview}.(ListVar{ilist}));% transform all fields in double before all operations
264        end
[676]265        % get the time defined in the current file if not already defined from the xml file
266        if ~isempty(time) && isfield(Data{iview},'Time')
[606]267            timeread(iview)=Data{iview}.Time;
[595]268        end
[606]269        if ~isempty(NbSlice_calib)
270            Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform
271        end
[642]272       
[632]273        %% transform the input field (e.g; phys) if requested (no transform involving two input fields)
[606]274        if ~isempty(transform_fct)
275            if nargin(transform_fct)>=2
276                Data{iview}=transform_fct(Data{iview},XmlData{iview});
277            else
278                Data{iview}=transform_fct(Data{iview});
[29]279            end
[606]280        end
[632]281       
[642]282        %% calculate tps coefficients if needed
[614]283        check_proj_tps= isfield(Param,'ProjObject')&&~isempty(Param.ProjObject)&& strcmp(Param.ProjObject.ProjMode,'interp_tps')&&~isfield(Data{iview},'Coord_tps');
[606]284        Data{iview}=tps_coeff_field(Data{iview},check_proj_tps);
[642]285       
[606]286        %% projection on object (gridded plane)
287        if Param.CheckObject
288            [Data{iview},errormsg]=proj_field(Data{iview},Param.ProjObject);
289            if ~isempty(errormsg)
[746]290                disp_uvmat('ERROR',['ERROR in merge_proge/proj_field: ' errormsg],checkrun)
[606]291                return
[29]292            end
[464]293        end
[640]294       
295        %% mask
[642]296        if Param.CheckMask && ~isempty(MaskData{iview})
297             [Data{iview},errormsg]=mask_proj(Data{iview},MaskData{iview});
[640]298        end
[606]299    end
[673]300    %%%%%%%%%%%%%%%% END LOOP ON VIEWS %%%%%%%%%%%%%%%%
[606]301
302    %% merge the NbView fields
[739]303    [MergeData,errormsg]=merge_field(Data);
304    if ~isempty(errormsg)
305        disp_uvmat('ERROR',errormsg,checkrun);
[606]306        return
307    end
308
[673]309    %% time of the merged field: take the average of the different views
[676]310    if ~isempty(time)
311        timeread=time(index);   
312    elseif ~isempty(find(timeread))% time defined from ImaDoc
313        timeread=mean(timeread(timeread~=0));% take average over times form the files (when defined)
314    else
315        timeread=index;% take time=file index
[606]316    end
317
[673]318    %% generating the name of the merged field
319    i1=i1_series{1}(index);
320    if ~isempty(i2_series{end})
321        i2=i2_series{end}(index);
[606]322    else
323        i2=i1;
324    end
325    j1=1;
326    j2=1;
[673]327    if ~isempty(j1_series{1})
328        j1=j1_series{1}(index);
329        if ~isempty(j2_series{end})
330            j2=j2_series{end}(index);
[606]331        else
332            j2=j1;
[464]333        end
[606]334    end
[880]335    OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFileOut,FileExtOut,NomTypeOut,i1,i2,j1,j2);
[606]336
[673]337    %% recording the merged field
338    if strcmp(FileExtOut,'.png')    %output as image
339        if BitDepth==8
340            imwrite(uint8(MergeData.A),OutputFile,'BitDepth',8)
[464]341        else
[673]342            imwrite(uint16(MergeData.A),OutputFile,'BitDepth',16)
[464]343        end
[673]344        if index==1
345            %write xml calibration file, using the first file
346            siz=size(MergeData.A);
347            npy=siz(1);
348            npx=siz(2);
[880]349            if isfield(MergeData,'Coord_x') && isfield(MergeData,'Coord_y')
350                Rangx=MergeData.Coord_x;
351                Rangy=MergeData.Coord_y;
[673]352            elseif isfield(MergeData,'AX')&& isfield(MergeData,'AY')
353                Rangx=[MergeData.AX(1) MergeData.AX(end)];
354                Rangy=[MergeData.AY(1) MergeData.AY(end)];
355            else
356                Rangx=[0.5 npx-0.5];
357                Rangy=[npy-0.5 0.5];%default
358            end
359            pxcmx=(npx-1)/(Rangx(2)-Rangx(1));
360            pxcmy=(npy-1)/(Rangy(1)-Rangy(2));
361            T_x=-pxcmx*Rangx(1)+0.5;
362            T_y=-pxcmy*Rangy(2)+0.5;
363            GeometryCal.CalibrationType='rescale';
364            GeometryCal.CoordUnit=MergeData.CoordUnit;
365            GeometryCal.focal=1;
366            GeometryCal.R=[pxcmx,0,0;0,pxcmy,0;0,0,1];
367            GeometryCal.Tx_Ty_Tz=[T_x T_y 1];
368            ImaDoc.GeometryCalib=GeometryCal;
369            t=struct2xml(ImaDoc);
370            t=set(t,1,'name','ImaDoc');
371            save(t,[fileparts(OutputFile) '.xml'])
372        end
373       
[606]374    else
[676]375        MergeData.ListGlobalAttribute={'Conventions','Project','InputFile_1','InputFile_end','nb_coord','nb_dim'};
[606]376        MergeData.Conventions='uvmat';
377        MergeData.nb_coord=2;
378        MergeData.nb_dim=2;
379        dt=[];
380        if isfield(Data{1},'dt')&& isnumeric(Data{1}.dt)
381            dt=Data{1}.dt;
382        end
383        for iview =2:numel(Data)
384            if ~(isfield(Data{iview},'dt')&& isequal(Data{iview}.dt,dt))
385                dt=[];%dt not the same for all fields
[464]386            end
387        end
[676]388        if ~isempty(timeread)
389            MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'Time'}];
390            MergeData.Time=timeread;
391        end
392        if ~isempty(dt)
393            MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'dt'}];
[606]394            MergeData.dt=dt;
[29]395        end
[606]396        error=struct2nc(OutputFile,MergeData);%save result file
397        if isempty(error)
[739]398            disp(['output file ' OutputFile ' written'])
[606]399        else
[739]400            disp(error)
[606]401        end
[29]402    end
403end
[880]404disp(['total ellapsed time ' num2str(toc(tstart))])
[29]405
[222]406%'merge_field': concatene fields
407%------------------------------------------------------------------------
[739]408function [MergeData,errormsg]=merge_field(Data)
[222]409%% default output
[29]410if isempty(Data)||~iscell(Data)
411    MergeData=[];
412    return
413end
[739]414errormsg='';
[867]415MergeData=Data{1};% merged field= first field by default, reproduces the global attributes of the first field
[606]416NbView=length(Data);
[867]417if NbView==1% if there is only one field, just reproduce it in MergeData
418    return
[29]419end
[222]420
[522]421%% group the variables (fields of 'Data') in cells of variables with the same dimensions
[668]422[CellInfo,NbDim,errormsg]=find_field_cells(Data{1});
[739]423if ~isempty(errormsg)
424    return
425end
[670]426
[89]427%LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS
[668]428for icell=1:length(CellInfo)
[670]429    if NbDim(icell)~=1 % skip field cells which are of dim 1
430        switch CellInfo{icell}.CoordType
[867]431            case 'scattered'  %case of input fields with unstructured coordinates: just concatene data
[670]432                for ivar=CellInfo{icell}.VarIndex %  indices of the selected variables in the list FieldData.ListVarName
433                    VarName=Data{1}.ListVarName{ivar};
434                    for iview=2:NbView
435                        MergeData.(VarName)=[MergeData.(VarName); Data{iview}.(VarName)];
[89]436                    end
437                end
[670]438            case 'grid'        %case of fields defined on a structured  grid
439                FFName='';
[676]440                if isfield(CellInfo{icell},'VarIndex_errorflag') && ~isempty(CellInfo{icell}.VarIndex_errorflag)
[670]441                    FFName=Data{1}.ListVarName{CellInfo{icell}.VarIndex_errorflag};% name of errorflag variable
[867]442                    MergeData.ListVarName(CellInfo{icell}.VarIndex_errorflag)=[];%remove error flag variable in MergeData (will use NaN instead)
443                    MergeData.VarDimName(CellInfo{icell}.VarIndex_errorflag)=[];
444                    MergeData.VarAttribute(CellInfo{icell}.VarIndex_errorflag)=[];
[670]445                end
446                % select good data on each view
447                for ivar=CellInfo{icell}.VarIndex  %  indices of the selected variables in the list FieldData.ListVarName
448                    VarName=Data{1}.ListVarName{ivar};
449                    for iview=1:NbView
450                        if isempty(FFName)
451                            check_bad=isnan(Data{iview}.(VarName));%=0 for NaN data values, 1 else
452                        else
453                            check_bad=isnan(Data{iview}.(VarName)) | Data{iview}.(FFName)~=0;%=0 for NaN or error flagged data values, 1 else
454                        end
[867]455                        Data{iview}.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
[670]456                        if iview==1
[867]457                            %MergeData.(VarName)=Data{1}.(VarName);% initiate MergeData with the first field
[874]458                            MergeData.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
[670]459                            NbAver=~check_bad;% initiate NbAver: the nbre of good data for each point
[739]460                        elseif size(Data{iview}.(VarName))~=size(MergeData.(VarName))
461                            errormsg='sizes of the input matrices do not agree, need to interpolate on a common grid using a projection object';
462                            return
[867]463                        else                             
464                            MergeData.(VarName)=MergeData.(VarName) +double(Data{iview}.(VarName));%add data
[670]465                            NbAver=NbAver + ~check_bad;% add 1 for good data, 0 else
466                        end
467                    end
468                    MergeData.(VarName)(NbAver~=0)=MergeData.(VarName)(NbAver~=0)./NbAver(NbAver~=0);% take average of defined data at each point
[867]469                    MergeData.(VarName)(NbAver==0)=NaN;% set to NaN the points with no good data
[670]470                end
[89]471        end
[867]472%         if isempty(FFName)
473%             FFName='FF';
474%         end
475%         MergeData.(FFName)(NbAver~=0)=0;% flag to 1 undefined summed data
476%         MergeData.(FFName)(NbAver==0)=1;% flag to 1 undefined summed data
[89]477    end
478end
[222]479
[670]480
[810]481   
Note: See TracBrowser for help on using the repository browser.