Pole-Zero Plot of Transfer Fucntion H(z)

조회 수: 3 (최근 30일)
Bahare Zare
Bahare Zare 2021년 12월 6일
답변: Kiran Felix Robert 2021년 12월 9일
I can't to find poles and zeroes of given function
I try to write H(z) as below, but i'm getting error anyone know how can i write this function and find the zeros and poles like this:
syms z;
summ = 1;
c = [0 0 0 0];
h1 = [0 0 0 0];
for k = 1:4
c(k) = 0.95*exp((0.15*pi+0.02*pi*k)*1j);
h1 = ((conj(c(k))-exp(1j.*w).^-1).*(c(k)-exp(1j.*w).^-1))/((1-c(k).*exp(1j.*w).^-1).*(1-conj(c(k)).*exp(1j.*w).^-1));
summ = summ*h1;
end
h(z) = h1*h2(z);
pzmap(h);

답변 (1개)

Kiran Felix Robert
Kiran Felix Robert 2021년 12월 9일
Hi Bahare,
To use pzmap, the input argument must be one of the Dynamic System Model as mentioned in the 'pzmap' documentation.
You may also try using Poles, which might accept symbolic input arguments.

카테고리

Help CenterFile Exchange에서 Stability Analysis에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by