rlocus
Function File: rlocus (sys)
Function File: [rldata, k] = rlocus (sys, increment, min_k, max_k)
Display root locus plot of the specified SISO system.
Inputs
Outputs
Block Diagram
u + +---+ +------+ y
------>(+)----->| k |----->| SISO |-------+------->
^ - +---+ +------+ |
| |
+---------------------------------+
|
See also: rlocusx
Source Code: rlocus
s = tf('s');
g = (s^2+2*s+2)/(s*(s^4+9*s^3+33*s^2+51*s+26));
rlocus(g);