DynamicSystems
CharacteristicPolynomial
compute the characteristic polynomial of a state-space system
Calling Sequence
Parameters
Description
Examples
CharacteristicPolynomial(sys, lambda)
sys
-
System(ss); a state-space system object
lambda
(optional) name
The CharacteristicPolynomial command returns the characteristic polynomial, in lambda, of the state-space system sys. The polynomial is the determinant of lambda*I - A, where A is the system matrix of sys and I is the identity Matrix with dimension(A).
The optional lambda parameter is used as the indeterminate of the returned polynomial. The default is the value of the DynamicSystems[SystemOptions] discretefreqvar option, if sys is discrete, or the complexfreqvar option, if sys is continuous.
withDynamicSystems:
sys≔StateSpace1s2+s+1:
CharacteristicPolynomialsys
s2+s+1
sys≔StateSpacezz2+az+b,discrete:
z2+az+b
CharacteristicPolynomialsys,w
w2+aw+b
See Also
DynamicSystems[SystemOptions]
LinearAlgebra[CharacteristicPolynomial]
Download Help Document