Effacer les filtres
Effacer les filtres

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

188 vues (au cours des 30 derniers jours)
Janno Rhey Don
Janno Rhey Don le 23 Juil 2020
Commenté : Janno Rhey Don le 23 Juil 2020
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

Réponse acceptée

Serhii Tetora
Serhii Tetora le 23 Juil 2020
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)

Plus de réponses (0)

Catégories

En savoir plus sur Simulink dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by