首页 > 编程知识 正文

劳斯判据应用的特殊情况及其处理方法,劳斯判据的特殊情况

时间:2023-05-04 22:43:27 阅读:259196 作者:3238

使用Matlab进行验证:

%Use Matlab to test it %the range of values of tautau = [ 0 1 5 ];%the step response of the system for i = 1 : 3 k = tau( i ); num = [ 10 10 ]; den = [ 11+10*k,10,10 ]; sys = tf( num , den ); figure(i) if i == 1 t = 0 : 0.02 : 10; step( sys , t ); grid on; else if i == 2 t = 0 : 0.02 : 30; step( sys , t ); grid on; else t = 0 : 0.02 : 80; step( sys , t ); grid on; end end end

结果如下:
Figure one

Figure two

Figure three

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。