Pole-Zero Plot and Frequency Response

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

Pole-Zero Plot And Frequency Response

Num=[1 0.8 0.8]; %Numerator Co-efficients


Den=[1 0 0.49]; %Denominator Co-efficients
Ts=0.1;%Sampling time
sys=tf(Num,Den,Ts);%%z-function declaration
[z,p,k]=tf2zp(Num,Den)%poles and zeros
pzmap(sys)%pole zero map
figure
bode(sys);%Frequency Response

z =

-0.4000 + 0.8000i
-0.4000 - 0.8000i

p =

0.0000 + 0.7000i
0.0000 - 0.7000i

k =

1
2
Published with MATLAB® R2015a

You might also like