How to simplify transfer function?
Ältere Kommentare anzeigen
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!
Akzeptierte Antwort
Weitere Antworten (1)
Artur Araujo
am 14 Nov. 2016
1 Stimme
You could try H = zpk(G(2,2))
1 Kommentar
Zuhair Abduljabbar
am 31 Jan. 2021
Thanks
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!