Como obtener la función de transferencia en controles
5 次查看(过去 30 天)
显示 更早的评论
Cuál es la instrucción para obtener la función de transferencia
1 个评论
Umar
2024-6-30
Hola Jose,
Para obtener la función de transferencia en Matlab, puede utilizar la función tf. Esta función crea un modelo de función de transferencia basado en los coeficientes del numerador y denominador.
Espero que esto responda a su pregunta
采纳的回答
sai charan sampara
2024-6-30
Hi Jose,
You can use the "tf" function in MATLAB to obtain a transfer function of a system. This function returns a transfer function model object or a state-space model as output based on the inputs given. The input can be numerator and denominator coefficients of the transfer function or dynamic system models. The discrete-time transfer function can also be obtained by providing the sample time as input.
numerator = 1;
denominator = [2,4,7];
sys = tf(numerator,denominator)
stepplot(sys)
Here is the link to the documentation of "tf" function:
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Transforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!