use matlab to find the poles and zeros of the following function π(π ) = 100π (π β 1)/ (π + 2)(π 2 + 3π + 2).using tf function in matlab
main.m
num = [1000-100]; % numerator coefficientsden = [1524]; % denominator coefficientstf = tf(num,den) % transfer functionzeros_tf = zero(tf) % zeros of transfer functionpoles_tf = pole(tf) % poles of transfer function