pole (Control Design and Simulation Module, MathScript Function)
Member of the dynchar class.
Syntax
q = pole(SysIn)
Description
Returns the locations of the closed-loop poles of a system model.
Inputs
Name | Description |
SysIn | Specifies a linear time-invariant (LTI) model in transfer function, zero-pole-gain, or state-space form. |
Outputs
Name | Description |
q | Returns the closed-loop pole locations of the SysIn model. q is a complex vector. |
Examples
SysIn = ss([-1, 0; 1, -2], [1, 0]', [0, 1],0)q = pole(SysIn)