CLoopS:
-------------------------------------------------------------------------------
Creates a closed loop system given the plant [a,b,c] and the
controller [ac,bc,cc,dc]. Every output of the controller has
a corresponding input in the plant and yc(i) = u(i), etc.
-------------------------------------------------------------------------------
Form:
[at, bt, ct, dt] = CLoopS( a, b, c, ac, bc, cc, dc )
[at, bt, ct, dt] = CLoopS( a, b, c, k )
-------------------------------------------------------------------------------
------
Inputs
------
a (2n,2n) Plant matrix
b (2n, n) Input matrix
c ( n,2n) Output matrix
ac (2n,2n) Controller plant matrix
bc (2n, n) Controller input matrix
cc ( n,2n) Controller output matrix
dc ( n, n) Controller feedthrough matrix
or
k ( n, n) Gain matrix
-------
Outputs
-------
at (2n,2n) System plant matrix
bt (2n, n) System input matrix
ct ( n,2n) System output matrix
dt ( n,2n) System feedthrough matrix
-------------------------------------------------------------------------------
Children: