control.hsvd¶
- control.hsvd(sys)¶
Calculate the Hankel singular values.
Parameters: sys : StateSpace
A state space system
Returns: H : Matrix
A list of Hankel singular values
See also
Notes
The Hankel singular values are the singular values of the Hankel operator. In practice, we compute the square root of the eigenvalues of the matrix formed by taking the product of the observability and controllability gramians. There are other (more efficient) methods based on solving the Lyapunov equation in a particular way (more details soon).
Examples
>>> H = hsvd(sys)