


WENDLANDCSRBF Summary of this function goes here e: support of the function


0001 function fx = wendlandCSRBF(r, e) 0002 %WENDLANDCSRBF Summary of this function goes here 0003 % e: support of the function 0004 0005 % fx = 1-((max(1-r./e, 0).^4).*(1+4*r./e)); 0006 fx = ((max(1-r./e, 0).^4).*(1+4*r./e)); 0007 0008 end 0009