A unit step input with unity feedback using MATLAB Simulink ?
Show older comments
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 Comments
abhijit kulkarni
on 6 May 2014
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
on 6 May 2014
nl2605
on 6 May 2014
what do you mean by unity feedback?
Answers (1)
Maximilian
on 3 Jul 2014
1 vote
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.
Categories
Find more on Classical Control Design in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!