Changeset 650 for trunk/src/series.m


Ignore:
Timestamp:
Jun 17, 2013, 6:46:06 PM (11 years ago)
Author:
sommeria
Message:

bugs corrected: handles.TimeName? in uvmat, 0_OAR emptied for culter computations with series.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series.m

    r648 r650  
    17631763        %create subdirectory for oar command and log files
    17641764        DirOAR=fullfile(OutputDir,'0_OAR');
    1765         if ~exist(DirOAR,'dir')
     1765        if exist(DirOAR,'dir')% delete the content of the dir 0_OAR to allow new input
     1766            curdir=pwd;
     1767            cd(DirOAR)
     1768            delete('*')
     1769            cd(curdir)
     1770        else
    17661771            [tild,msg1]=mkdir(DirOAR);
    17671772            if ~strcmp(msg1,'')
Note: See TracChangeset for help on using the changeset viewer.