Ignore:
Timestamp:
May 9, 2024, 6:51:30 PM (5 weeks ago)
Author:
sommeria
Message:

new display of false vectors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/geometry_calib.m

    r1127 r1143  
    325325                end
    326326            end
     327            NbErrors=0;
    327328            for iexp=1:NbExp
    328329                XmlName=fullfile(ListPath{iexp},[ListSubdir{iexp} '.xml']);
     
    340341                if ~strcmp(errormsg,'')
    341342                    msgbox_uvmat('ERROR',errormsg);
     343                    NbErrors=NbErrors+1;
    342344                else
    343345                    if check_update
     
    349351            end
    350352        end
    351         msgbox_uvmat('CONFIMATION',['calibration replicated for ' num2str(NbExp) ' experiments']);
     353        msgout=['calibration replicated for ' num2str(NbExp-NbErrors) ' experiments'];
     354        if NbErrors~=0
     355            msgout={msgout;['error for ' num2str(NbErrors) ' experiments']};
     356        end
     357        msgbox_uvmat('CONFIMATION',msgout);
    352358    else
    353359        %% update the calibration parameters in the currently opened uvmat GUI
Note: See TracChangeset for help on using the changeset viewer.