How can I plot a step response to an
Show older comments
I want to plot the response of a dc motor to a 15V input, jow can I plot it? Step(sys) shows an input of 1V how can I edit it to show a plot for 15?
Answers (2)
Star Strider
on 18 Nov 2017
You can increase the amplitude of the step by using stepDataOptions:
opt = stepDataOptions;
opt.StepAmplitude = 15;
y = step(sys, t, opt);
Salahuddin Bangash
on 18 Nov 2017
Edited: Salahuddin Bangash
on 18 Nov 2017
syms s
num=[15]
g=tf(num,1)
step(g)
grid on %is that wat u want?
%or
step(15,1)
Categories
Find more on Motor Drives 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!