LINEARRBF Linear RBF
0001 function fx = linearRBF(r) 0002 %LINEARRBF Linear RBF 0003 0004 fx = r; 0005 0006 end 0007