How to simplify transfer function?
Mostra commenti meno recenti
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!
Risposta accettata
Più risposte (1)
Artur Araujo
il 14 Nov 2016
1 voto
You could try H = zpk(G(2,2))
1 Commento
Zuhair Abduljabbar
il 31 Gen 2021
Thanks
Categorie
Scopri di più su Get Started with MATLAB in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!