C2DelZOH:

-------------------------------------------------------------------------------
   Create a discrete time systems using the delta operator

   Given
   .
   x = ax + bu

   Find f and g where

   x(k+1) = x + fx(k) + gu(k)

-------------------------------------------------------------------------------
   Form:
   [f, g] = C2DelZOH( a, b, T )
-------------------------------------------------------------------------------

   ------
   Inputs
   ------
   a            (n,n)  Continuous plant matrix
   b            (n,m)  Input matrix
   T            (1,1)  Time step

   -------
   Outputs
   -------
   f            (n,n)  Discrete plant matrix
   g            (n,m)  Discrete input matrix

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

Children: