0001 function fx = thinPlateSplineRBF(r) 0002 0003 fx = r.^2.*log(r); 0004 fx(r==0) = 0; 0005 0006 end 0007