<< hsvd | Control System functions | initial >> |
[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(...) |
a lti model.
Time samples: vector.
End time for step response: scalar.
Time range for step response: two-element vector.
Simulated response data: matrix or vector.
Time vector: vector.
State trajectories: matrix or vector.
sys = tf(4,[1 2 10]);
t = 0:0.05:5;
f = figure();
impulse(sys,t);
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET