필터 지우기
필터 지우기

How to find the limit of a transfer function defined using tf?

조회 수: 188 (최근 30일)
Janno Rhey Don
Janno Rhey Don 2020년 7월 23일
댓글: Janno Rhey Don 2020년 7월 23일
I defined a transfer function using:
>> sys1=tf([20 20],poly([-4 -3]))
sys1 =
20 s + 20
--------------
s^2 + 7 s + 12
now i want to find its limit s->0, how do i do this?
tried using limit(sys1) but it didnt accept it

채택된 답변

Serhii Tetora
Serhii Tetora 2020년 7월 23일
sys1=tf([20 20],poly([-4 -3]));
[Num,Den] = tfdata(sys1,'v');
syms s
sys_syms=poly2sym(Num,s)/poly2sym(Den,s);
lim = limit(sys_syms,s,0)

추가 답변 (0개)

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by