Changeset 904 for trunk/src/series/civ_series.m
- Timestamp:
- May 30, 2015, 1:26:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/civ_series.m
r897 r904 70 70 Data.OutputSubDirMode='last'; %select the last subDir in the input table as root of the output subdir name (option 'all'/'first'/'last', 'all' by default) 71 71 Data.OutputFileMode='NbInput_i';% one output file expected per value of i index (used for waitbar) 72 Data.CheckOverwriteVisible='on'; % manage the overwrite of existing files (default=1) 72 73 return 73 74 end … … 325 326 maskname='';% initiate the mask name 326 327 tic; 328 CheckOverwrite=1;%default 329 if isfield(Param,'CheckOverwrite') 330 CheckOverwrite=Param.CheckOverwrite; 331 end 327 332 for ifield=1:NbField 328 333 if ~isempty(RUNHandle)% update the waitbar in interactive mode with GUI series (checkrun=1) … … 350 355 j1_series_Civ1(ifield),j2_series_Civ1(ifield)); 351 356 end 357 end 358 if ~CheckOverwrite && exist(ncfile,'file') 359 continue% skip iteration if the mode overwrite is desactivated and the result file already exists 352 360 end 353 361 end … … 861 869 disp(errormsg) 862 870 end 863 disp(['ellapsed time ' num2str(toc ) 's'])871 disp(['ellapsed time ' num2str(toc/60,2) ' minutes']) 864 872 end 865 873 end
Note: See TracChangeset
for help on using the changeset viewer.