Como obtener la función de transferencia en controles

86 ビュー (過去 30 日間)
Jose
Jose 2024 年 6 月 30 日
回答済み: sai charan sampara 2024 年 6 月 30 日
Cuál es la instrucción para obtener la función de transferencia
  1 件のコメント
Umar
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
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)
sys = 1 --------------- 2 s^2 + 4 s + 7 Continuous-time transfer function.
stepplot(sys)
Here is the link to the documentation of "tf" function:

その他の回答 (0 件)

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by