How does one factor a SISO transfer function?
5 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
回答(2 个)
Rishav
2025-1-13
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:
0 个评论
Tushar Mathur
2025-1-17
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)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dynamic System Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!