Changeset 67 for trunk/src/RUN_FIX.m


Ignore:
Timestamp:
Mar 25, 2010, 6:48:48 PM (14 years ago)
Author:
sommeria
Message:

civ: RUN civ lounched out of the Matlab work space. RUN and BATCH now runned by a unique sub-function lounch.m.
FiLE PARAM.xml modified to provide different paths for Batch and Run !!!!!
RUN_FIX: minor error message modif
geometry_calib: calib point editing by the mouse
improvement of the interactions between the different GUIs. Close function...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/RUN_FIX.m

    r56 r67  
    2626%check writing access
    2727[errorread,message]=fileattrib(filename);
    28 if ~isempty(message) && ~isequal(message.UserWrite,1)
     28if ischar(message)
     29    msgbox_uvmat('ERROR',[filename ':' message]);
     30    return
     31end
     32if ~isequal(message.UserWrite,1)
    2933     msgbox_uvmat('ERROR',['no writting access to ' filename ' (RUN_FIX.m)']);
    3034    return
Note: See TracChangeset for help on using the changeset viewer.