Plotting multiple step response for multiple transfer function
이전 댓글 표시
Im trying to plot multiple step response in a single plot, but somehow the transfer function is always stable, by right from my analysis it should be goign unstable at K = 26.25 but somehow it is still stable in the plot. Im still new to matlab and this is my code
for K = 1:20:50
GS = tf(K,[1 8 19 12]);
step(GS)
hold on;
end
답변 (1개)
What's the basis for the assertion that GS should be unstable at K = 26.25? As you've seen, that clearly cannot be the case because the denominator of GS, i.e., the poles of GS, does not depend on K. Maybe the form of GS is not correct, or at least doesn't represent what you think it represents.
카테고리
도움말 센터 및 File Exchange에서 Frequency-Domain Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!