Ignore:
Timestamp:
Mar 10, 2010, 7:43:51 PM (14 years ago)
Author:
sommeria
Message:

-proj_field, plot_field, civ_3D: bug repair for 3D3C velocity fields (not finished)
-check_function: introduce try/catch for function datenum (error with french systems)
-cleaning of warndlg_uvmat in different fcts (replaced by msgbox_uvmat)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/geometry_calib.m

    r36 r42  
    598598end
    599599if ~isfield(sparam,'GeometryCalib_exe')
    600     warndlg_uvmat(['calibration program <GeometryCalib_exe> undefined in parameter file ' xmlfile],'ERROR')
     600    msgbox_uvmat('ERROR',['calibration program <GeometryCalib_exe> undefined in parameter file ' xmlfile])
    601601    return
    602602end
    603603Tsai_exe=sparam.GeometryCalib_exe;
    604604if ~exist(Tsai_exe,'file')
    605     warndlg_uvmat(['calibration program ' Tsai_exe ' does not exist'],'ERROR')
     605    msgbox_uvmat('ERROR',['calibration program ' Tsai_exe ' does not exist'])
    606606    return
    607607end
     
    612612    eval(['!' Tsai_exe ' -f t.txt > tsaicalib.log']);
    613613if ~exist('calib.dat','file')
    614     warndlg_uvmat('no output from calibration program Tsai_exe: possibly too few points','ERROR')
     614    msgbox_uvmat('ERROR','no output from calibration program Tsai_exe: possibly too few points')
    615615end
    616616calibdat=dlmread('calib.dat');
     
    771771        YCoord=str2num(coord_str(k(4)+5:end));
    772772    else
    773         warndlg_uvmat('the choice in menu_coord of uvmat must be px or phys ','ERROR')
     773        msgbox_uvmat('ERROR','the choice in menu_coord of uvmat must be px or phys ')
    774774    end
    775775    huvmat=findobj(allchild(0),'Name','uvmat');%find the current uvmat interface handle
     
    874874end
    875875if ~isfield(AxeData,'ZoomAxes')
    876     warndlg_uvmat('first draw a window around a grid marker','ERRROR')
     876    msgbox_uvmat('ERROR','first draw a window around a grid marker')
    877877    return
    878878end
Note: See TracChangeset for help on using the changeset viewer.