DynamicSystems
ControllabilityMatrix
compute the controllability matrix
Calling Sequence
Parameters
Description
Examples
ControllabilityMatrix( sys )
ControllabilityMatrix( Amat, Bmat )
sys
-
System(ss); state-space system
Amat
Matrix; state-space Matrix A
Bmat
Matrix; state-space Matrix B
The ControllabilityMatrix command computes the controllability matrix of a state-space system.
If the parameter sys is a state-space System, then the A and B Matrices are sys:-a and sys:-b, respectively.
If the parameters Amat and Bmat are Matrices, then they are the A and B Matrices, respectively.
The controllability matrix has dimensions n x n*m, where n is the number of states (dimension of A) and m is the number of inputs (column dimension of B). It has the form << B | A . B | A^2 . B | A^3 . B | ... | A^(n-1) . B >>.
See Also
DynamicSystems[Controllable]
DynamicSystems[Grammians]
DynamicSystems[ObservabilityMatrix]
DynamicSystems[Observable]
DynamicSystems[SSTransformation]
Download Help Document