deriving a transfer fuctnion
Show older comments
Derive the closed loop transfer function for the given controller, and then use a second order system to approximate the 3rd-order closed loop transfer function, calculate the transient performance (rise time, time to peak, %PO, setting time), and compare with the actual performance identified from the Matlab plot.

Answers (1)
Hi @Plato
This is a homework question. However, you can use the feedback() function to compute the closed-loop transfer function if the controller K is given.
s = tf('s');
G = ((s + 1)*(s + 2))/((s^2 + s + 2)*(s + 3));
G = zpk(G)
help feedback
Categories
Find more on Classical Control Design in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!