How to get transfer function from any simulink model ?
显示 更早的评论
let's say i build a model at Simulink then i want to get the Transfer Function of that model.
then i will put i step response to see the output the i will make a controller on the TF with SisoTool.
So how can i get the TF of a model.
采纳的回答
更多回答(3 个)
Green Elephant
2019-5-18
2 个投票
#sebastian, does the control system designer give us the non linear transfer function of just a linearized version of it around a certain point
1 个评论
Arkadiy Turevskiy
2024-1-11
No such thing as nonlinear transfer function.
Drew Davis
2025-11-14
In addition to the answers already provided, a more direct way to find a transfer function from a Simulink model is to linearize it to a state-space model, then convert it to a transfer function:
sys = linearize("mymodel",io_points);
sys_tf = tf(sys);
Almomen
2024-3-9
0 个投票
I want to find a trasnfer function for the linkage mechanism but I couldn't find it.
类别
在 帮助中心 和 File Exchange 中查找有关 Linearization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!