필터 지우기
필터 지우기

Transfer function to pole zero diagram

조회 수: 3 (최근 30일)
Jonathan George
Jonathan George 2022년 3월 26일
답변: Paul 2022년 3월 26일
Is there any way to represent a discrete-domain transfer function [H(z)] with a pole zero diagram in MATLAB? And perhaps even vice-versa?
Thanks in advance.

답변 (1개)

Paul
Paul 2022년 3월 26일
The answer to the first question is to use pzplot()
H = tf([1 .5],[1 2.5 3.125],1)
H = z + 0.5 ------------------- z^2 + 2.5 z + 3.125 Sample time: 1 seconds Discrete-time transfer function.
pzplot(H)
axis equal
Not sure about the second question. How would the pole-zero diagram be represented in Matlab for input to some function from which the tf is computed? If the poles and zeros are known then
z = -0.5; p = -1.25 + 1j*[1.25 -1.25];
H = zpk(z,p,1,1)
H = (z+0.5) -------------------- (z^2 + 2.5z + 3.125) Sample time: 1 seconds Discrete-time zero/pole/gain model.
H = tf(H)
H = z + 0.5 ------------------- z^2 + 2.5 z + 3.125 Sample time: 1 seconds Discrete-time transfer function.

카테고리

Help CenterFile Exchange에서 Pole and Zero Locations에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by