MATLAB: How to create a step response with the following unit step function as input

controlControl System ToolboxinputMATLABresponsestepstep responsetftheory

input : F
when (0<t), F = 3
when (0.98<t) = 6
I want to make step response with that unit step function as input in matlab…
please help me..

Best Answer

F = @(t) (t < .98) * 3 +(t > .98) * 6
fplot(F,[0,2])
Related Question