Finding the poles in Transfer Function

260 views (last 30 days)
How do you write
G=1/ s(s+2)(s+4)
in Matlab to check my answer?

Accepted Answer

madhan ravi
madhan ravi on 28 Sep 2020
Edited: madhan ravi on 28 Sep 2020
s = tf('s');
G = 1 / (s * (s + 2) * (s + 4));
pole(G)

More Answers (0)

Categories

Find more on Control System Toolbox 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!