DetectionFilterBuild:

-------------------------------------------------------------------------------
   Algorithm to compute detection filter gains.
   Create a detection filter for a fully measured system.
   The filter is of the form:

   y[k]   = c*x[k]
   x[k+1] = a*x[k] + D*(y[k] - c*x[k]) + b*u[k]

-------------------------------------------------------------------------------
   Form:
   d = DetectionFilterBuild( g, lambda )
-------------------------------------------------------------------------------

   ------
   Inputs
   ------
   g			        (:)    State space system
   lambda       		(1,1)  Inverse time constant

   -------
   Outputs
   -------
   d			        (:)    Detection filter
                        .g   plant
                        .d   gain matrix
                        .t   transformation matrix

-------------------------------------------------------------------------------
   References:	Meserole, J. S., "Detection Filters for Fault-Tolerant Control
               of Turbofan Engines." MIT 1981.            
-------------------------------------------------------------------------------

Children:

Estimation: FDIR/TMatrix