Pole Zero plot formation iin MATLAB

I am having a transfer function H(z)
H(z) =(0.44z^-1 + 0.362z^-2 + 0.02z^-1)/(1 + 0.4z^-1 + 0.18z^-2 -0.2z^-3)
How can i have its pole zero map.

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2016년 3월 24일

0 개 추천

Ts=1, % sample time
H=tf([0 0.44 0.362 0.02],[1 0.4 0.18 -0.2],Ts,'variable','z^-1')
set(H,'variable','z')
[N,D]=tfdata(H,'v')
pole=roots(D)
zero=roots(N)

카테고리

질문:

2016년 3월 24일

답변:

2016년 3월 24일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by