Como obtener la función de transferencia en controles
조회 수: 87 (최근 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!