画出一阶系统单位阶跃响应、单位脉冲响应、单位斜坡响应曲线
t=0:0.1:7;
num=[1];
den=[1 1];
figure;
c1=impulse(num,den,t);
plot(t,c1,‘b-’);
xlabel(‘t/s’);ylabel(‘c(t)’);grid on; figure;
c2=step(num,den,t);
plot(t,ones(size(t)),‘r-’,t,c2,‘b-’);
xlabel(‘t/s’);ylabel(‘c(t)’);grid on; figure;
c3=lsim(num,den,t’,t);
plot(t,t,‘r-’,t,c3,‘k-’);
xlabel(‘t/s’);ylabel(‘c(t)’);grid on;文章来源:https://www.toymoban.com/news/detail-450365.html
文章来源地址https://www.toymoban.com/news/detail-450365.html
到了这里,关于画出一阶系统单位阶跃响应、单位脉冲响应、单位斜坡响应曲线的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!