How can I plot a root locus for an open loop system?
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I need help in plotting an open loop system for the following equation:
G(s)=K / s[(Is+a)(Hs+R) +K^2]
0 Kommentare
Akzeptierte Antwort
Jason R
am 26 Jan. 2015
To find the root locus of G=1/(10s+5), use the following code:
s=tf('s'); G=tf(1/(10*s+5)); rlocus(G)
This should be enough to get you going.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Classical Control Design finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!