How does one factor a SISO transfer function?
Mostrar comentarios más antiguos
I'd like a function that factors SISO transfer functions to a series of second and first order transfer functions. Is there a Matlab function that accomplishes that?
Respuestas (2)
Rishav
el 13 de En. de 2025
0 votos
Hi James,
There is no such MATLAB function that factors SISO transfer functions to a series of second and first order transfer functions.
But you can try some customizations at your end with 'tf' and 'zpk' functions.
Refer to the following documentations for the same:
Hi James,
You can use the modalsep function to separate you system into a series of modal components. For example:
sys = rss(15);
[h,h0] = modalsep(sys);
size(h)
Categorías
Más información sobre Dynamic System Models en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!