How to get transfer function from any simulink model ?
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (3)
Green Elephant
el 18 de Mayo de 2019
2 votos
#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 comentario
Arkadiy Turevskiy
el 11 de En. de 2024
No such thing as nonlinear transfer function.
Drew Davis
el 14 de Nov. de 2025
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
el 9 de Mzo. de 2024
0 votos
I want to find a trasnfer function for the linkage mechanism but I couldn't find it.
Categorías
Más información sobre Linearization 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!