use matlab to find the poles and zeros of the following functions. 𝑀(𝑠) = 𝑒 to the power of −2𝑠 /10𝑠(𝑠 + 1)(𝑠 + 2) in matlab in matlab in matlab in matlab
main.m
num = exp(-2*s);
den = 10*s*(s+1)*(s+2);
sys = tf(num, den);
zeros = zero(sys);
poles = pole(sys);
disp(zeros);
disp(poles);