MATLAB: Finding the poles in Transfer Function

controlControl System Toolboxpolestheory

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

Best Answer

s = tf('s');
G = 1 / (s * (s + 2) * (s + 4));
pole(G)