A unit step input with unity feedback using MATLAB Simulink ?
이전 댓글 표시
How to get a graph for a unit step input with unity feedback using MATLAB Simulink, for following transfer function ?
-15 s
---------------------------
s^3 + 25 s^2 + 290 s + 5300
Continuous-time transfer function.
댓글 수: 3
abhijit kulkarni
2014년 5월 6일
num=[0 0 1 0];
den=[1 25 290 5300];
sys=tf(num,den);
num=[0 0 1 0];
den=[1 25 290 5300];
sys=tf(num,den);
step(sys,1)
% OR now use >>help lsim
thar
2014년 5월 6일
nl2605
2014년 5월 6일
what do you mean by unity feedback?
답변 (1개)
Maximilian
2014년 7월 3일
1 개 추천
Connect a step input to a summing junction, put your transfer function in a Transfer Fcn block, add your feedback and connect the output to a scope.
카테고리
도움말 센터 및 File Exchange에서 Classical Control Design에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!