How to simplify transfer function?
Mostrar comentarios más antiguos
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!
Respuesta aceptada
Más respuestas (1)
Artur Araujo
el 14 de Nov. de 2016
1 voto
You could try H = zpk(G(2,2))
1 comentario
Zuhair Abduljabbar
el 31 de En. de 2021
Thanks
Categorías
Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!