RHS1DWithAccelUKF:

Path: Common/DemoFuns

% Models a double integrator and a bias.
 The bias model is db/dt = 0.
 The velocity input is d.a - b.
 d.a is the measured acceleration.
 t is not used.
  For use with UKF.
--------------------------------------------------------------------------
   Form:
   d = RHS1DWithAccelUKF;
   xDot = RHS1DWithAccelUKF( x, t, d )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   x         (3,1)   State [position;velocity;bias]
   t         (1,1)   Time (not used)
   d         (.)     Data structure
                     .a	(1,1) Acceleration

   -------
   Outputs
   -------
   xDot      (3,1)  State d[position;velocity;bias]/dt

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

Back to the Common Module page