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.
with⁡DynamicSystems:
sys≔StateSpace⁡1s2+s+1:
CharacteristicPolynomial⁡sys
s2+s+1
sys≔StateSpace⁡zz2+a⁢z+b,discrete:
z2+a⁢z+b
CharacteristicPolynomial⁡sys,w
w2+a⁢w+b
See Also
DynamicSystems[SystemOptions]
LinearAlgebra[CharacteristicPolynomial]
Download Help Document