how to plot step response from an unknown first order system?
이전 댓글 표시
im having trouble with plotting the step response beacause my system doesnt reach the steady state. i need help to increase the ouput till it reaches the steady state
댓글 수: 1
John BG
2016년 2월 27일
have you checked stability?
답변 (1개)
Azzi Abdelmalek
2016년 2월 27일
Unknown first order system should have an unknown step response. If your system is stable, you normally can see the steady state.
%Example
N=1;
D=[1 10]
h=tf(N,D);
step(h)
you can check the stability:
r=roots(D)
the real part of r should be negative
카테고리
도움말 센터 및 File Exchange에서 Assembly에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!