MATLAB: How to find bode plot and phase,magnitude plot of 171 transfer function using for loop

control systemMATLAB

for k=1:0.5:10; for a=1:0.5:5; num=k; den=[1 a 0]; sys=tf(num,den); end end
Related Question