OnlineApproximator:

-------------------------------------------------------------------------------
   Implements an online approximator, f( y, theta ).
   Uses radial basis functions.
-------------------------------------------------------------------------------
   Form:
   [f, z] = OnlineApproximator( y, theta, d )	
-------------------------------------------------------------------------------

   ------
   Inputs
   ------
   y		(1,1)  State
   theta   (q,1)  Parameters
   d       (1,1)  Input data structure
                  .sigma (1,1) Standard deviation
                  .c     (q,1) Centers

   -------
   Outputs
   -------
   f    	(1,1)  Output
   z       (q,1)  Partials of f

-------------------------------------------------------------------------------

Children: