Ignore:
Timestamp:
Jun 26, 2012, 8:40:09 AM (12 years ago)
Author:
sommeria
Message:

various bugs repaired.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/read_multimadoc.m

    r469 r477  
     1%'read_multimadoc': read a set of Imadoc files and compare their timing of different file series
     2%------------------------------------------------------------------------
     3% [XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series)
     4%
     5% OUTPUT:
     6%
     7%
     8% INPUT:
     9%
    110function [XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series)
     11errormsg='';
    212nbview=numel(RootPath);
     13XmlData=cell(1,nbview);%initiate the structures containing the data from the xml file (calibration and timing)
    314NbSlice_calib=cell(1,nbview);
    415timecell=cell(1,nbview);
    5 XmlData=cell(1,nbview);%initiate the structures containing the data from the xml file (calibration and timing)
    616for iview=1:nbview%Loop on views
    717    XmlFileName=find_imadoc(RootPath{iview},SubDir{iview},RootFile{iview},FileExt{iview});
Note: See TracChangeset for help on using the changeset viewer.