RHS1DWithAccelUKF:

--------------------------------------------------------------------------
   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:
   xDot = RHS1DWithAccelUKF( x, t, d )
--------------------------------------------------------------------------

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

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

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