필터 지우기
필터 지우기

I am using pzmap where poles and zeros are ploted but my question how can i see poles on unit circle only not zeros?

조회 수: 25 (최근 30일)
I am using frequency response analysis and i want to plot the poles of the transfer function on unit circle without ploting zeros. Can anyone help me how can i do that?

채택된 답변

Erivelton Gualter
Erivelton Gualter 2018년 10월 22일
You can extract the pole and zeros and construct your model again using zpk for example.
Check the following example:
s = tf('s');
G = (s+0.5)/(s^2+s-0.5);
[P, Z] = pzmap(G);
G_without_zeros = zpk(P,[],1);
subplot(211); zplane(Z,P); title('Ploting Poles and Zeros on Unit Circle');
subplot(212); zplane(Z,[]); title('Ploting only Zeros on Unit Circle');
  댓글 수: 5
Walter Roberson
Walter Roberson 2018년 10월 22일
In R2014b and later, if you "hold on" then the xlim and ylim should be preserved. In R2014a and earlier, you needed to "hold all" to have the limits preserved.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by