Ignore:
Timestamp:
Oct 16, 2010, 5:56:00 PM (14 years ago)
Author:
sommeria
Message:

geometry_calib is now updated when a new image is viewed by uvmat
imadoc2struct corrected for time reading

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/griddata_uvmat.m

    r115 r116  
    22%adapt the input of the matlab function griddata to the appropriate version of Matlab
    33function ZI = griddata_uvmat(X,Y,Z,XI,YI)
    4 whos X Y Z XI YI
    54txt=ver;
    65Release=txt(1).Release;
    7 relnumb=str2num(Release(3:4))
     6relnumb=str2num(Release(3:4));
    87if relnumb >= 20
    98    ZI=griddata(double(X),double(Y),double(Z),double(XI),double(YI),'linear',{'QJ'});
Note: See TracChangeset for help on using the changeset viewer.