필터 지우기
필터 지우기

quick question for pade function

조회 수: 1 (최근 30일)
Amir Hamzah UTeM
Amir Hamzah UTeM 2011년 8월 18일
[num den]=pade(100,1)
num =
-1.0000 0.0200
den =
1.0000 0.0200
>> num
num =
-1.0000 0.0200
which one is poles and which one is residues?

채택된 답변

Paulo Silva
Paulo Silva 2011년 8월 18일
[num den]=pade(100,1)
num= -s+0.02 -> one zero at s=0.02
den= s+0.02 -> one pole at s=-0.02
You can see the zeros and poles like this pzmap(tf(num,den)) , or the step response step(tf(num,den)), tip: change the order from 1 to 2 and see what happens to the step response.
From the documentation of the pade function:
The row vectors num and den contain the numerator and denominator coefficients in descending powers of s. Both are Nth-order polynomials.
  댓글 수: 2
Amir Hamzah UTeM
Amir Hamzah UTeM 2011년 8월 18일
thanks Paulo,
so pole = -0.02 right? then what about residues?how can i get them?
Paulo Silva
Paulo Silva 2011년 8월 19일
Yes it's at s=-0.02
[r,p,k] = residue(num,den)
%[r,p,k] = residue(b,a) finds the residues, poles,
%and direct term of a partial fraction expansion
%of the ratio of two polynomials

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by