gaussianRBF

PURPOSE ^

GAUSSIANRBF Summary of this function goes here

SYNOPSIS ^

function fx = gaussianRBF(r, e)

DESCRIPTION ^

GAUSSIANRBF Summary of this function goes here
   Detailed explanation goes here

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

Generated on Thu 10-Dec-2020 17:34:27 by m2html © 2005