


GAUSSIANRBF Summary of this function goes here Detailed explanation goes here


0001 function fx = gaussianRBF(r, e) 0002 %GAUSSIANRBF Summary of this function goes here 0003 % Detailed explanation goes here 0004 0005 % % fx = 1-exp(-(r/e).*2); 0006 fx = exp(-(r/e).^2); 0007 % % fx = exp ( - 0.5 * r.^2 / e^2 ); 0008 0009 % fx = exp(-(1/e.*r).^2); 0010 0011 end