Why does matlab plot the unit step like a straight line?
Ältere Kommentare anzeigen
Hello, I want to pot only the unit step in matlab with this code:
s=tf('s')
sys=1/s
I expectet the step response like this:

But i get a plot in matlab like this:

Why do I get a step response like the second picture. Should a step input it not look like my first picture? Thanks
Akzeptierte Antwort
Weitere Antworten (1)
Because that's what the step response of the transfer function you mentioned looks like.
You might be looking for heaviside
syms x
fplot(heaviside(x), [-5, 5],"LineWidth",1.5)
ylim([0 1.5])
Kategorien
Mehr zu Tuning Goals finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



