How to simplify transfer function?
Afficher commentaires plus anciens
Hi guys
I have used the function s=tf('s') to ceate a transfer function, but I find that Matlab do not simplify the tf at all.
for example.
s=tf('s');
A=1/(1+s);B=A/(1+A);
the result is 1+s/(s^2+3*s+2)
What I want is 1/(2+s)
Anyone know that how to simplify the tf in Matlab?
Thank you!
Réponse acceptée
Plus de réponses (1)
Artur Araujo
le 14 Nov 2016
1 vote
You could try H = zpk(G(2,2))
1 commentaire
Zuhair Abduljabbar
le 31 Jan 2021
Thanks
Catégories
En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!