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!