isstable
Checks if an LTI model is stable or unstable
Syntax
BRES = isstable(SYSLTI)
Inputs
- SYSLTI
- An LTI model.
Outputs
- BRES
- A Boolean true if it is stable.
Examples
sys_tf=tf([1],[1 3 2]);
sys=ss(sys_tf);
R1=isstable(sys)
R1 = 1
sys_tf=tf([1],[1 5 6 0 0]);
R2=isstable(sys_tf)
R2 = 0
Comments
Returns true if the LTI model is stable.