You are on page 1of 1

Exp9:-wap to sketch polar plots for G(s)=20s/(s+1)(s+10).

clc;
clear;
w=[[0:.1:5],[6:1000]];
n=length(w);
for i=1:n
G_jw=(20*j*w(i))/(j*(j*w(i)+1))*(j*w(i)+10)*w(i)+10;
M(i)=abs(G_jw);
Ph(i)=angle(G_jw);
end
polar(Ph,M)

You might also like