impulse
Impulse response plot of dynamic system.
📝Syntax
[y, t, x] = impulse(sys)
[y, t, x] = impulse(sys, tFinal)
[y, t, x] = impulse(sys, [t0, tFinal])
[y, t, x] = impulse(sys, t)
 impulse(...)
📥Input Arguments
Parameter Description
sys a lti model.
t Time samples: vector.
tFinal End time for step response: scalar.
[t0, tFinal] Time range for step response: two-element vector.
📤Output Arguments
Parameter Description
y Simulated response data: matrix or vector.
tOut Time vector: vector.
x State trajectories: matrix or vector.
📄Description
💡Examples
sys = tf(4,[1 2 10]);
t = 0:0.05:5;
f = figure();
impulse(sys,t);
Example illustration
🔗See Also
steplsim
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub