How to simplify transfer function?
Show older comments
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!
Accepted Answer
More Answers (1)
Artur Araujo
on 14 Nov 2016
1 vote
You could try H = zpk(G(2,2))
1 Comment
Zuhair Abduljabbar
on 31 Jan 2021
Thanks
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!