multiQuadricRBF

PURPOSE ^

MULTIQUADRICRBF MultiQuadric Radial Basis Function

SYNOPSIS ^

function fx = multiQuadricRBF(r, e)

DESCRIPTION ^

MULTIQUADRICRBF MultiQuadric Radial Basis Function

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function fx = multiQuadricRBF(r, e)
0002 %MULTIQUADRICRBF MultiQuadric Radial Basis Function
0003 
0004 %fx = sqrt(r.^2 + e.^2);
0005 fx = sqrt((r/e).^2);
0006 
0007 end
0008

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