![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1550847/image.png)
Step Response of Transfer Function
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ainars Cernavskis
el 20 de En. de 2022
Comentada: Rena Berman
el 27 de Nov. de 2023
Hello so am trying to plot the step response of this trasnsfer function , but am not really sure how do i need to write it down in den = part , any help would be great thanks. .![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1553692/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1553692/image.png)
t=0:0.01:5;
num = 1;
den = [1 2 17];
sys = tf(num, den);
y = step(sys,t);
plot(t,y*4)
2 comentarios
Sam Chak
el 23 de Nov. de 2023
The original question may be beneficial to people who wish to learn how to plot the step response.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1550847/image.png)
Respuesta aceptada
Yongjian Feng
el 20 de En. de 2022
Editada: Yongjian Feng
el 20 de En. de 2022
Get help by doing:
help tf
Basically, you need to expand the denominator given in image into polynomial of s. Then take the coefficients and put into den. For example, if you expand it into 2*s^2+5*s+10, then den = [2 5 10].
To expand the denominator, you can do it manually or you can use the expand function of matlab.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!