Step response of LTI system. If no output arguments are given, the response is printed on the screen.
Inputs
LTI model.
Time vector. Should be evenly spaced. If not specified, it is calculated by the poles of the system to reflect adequately the response transients.
Optional simulation horizon. If not specified, it is calculated by the poles of the system to reflect adequately the response transients.
Optional sampling time. Be sure to choose it small enough to capture transient phenomena. If not specified, it is calculated by the poles of the system.
Line style and color, e.g. ’r’ for a solid red line or ’-.k’ for a dash-dotted
black line. See help plot
for details.
Outputs
Output response array. Has as many rows as time samples (length of t) and as many columns as outputs.
Time row vector.
State trajectories array. Has length (t)
rows and as many columns as states.
See also: impulse, initial, lsim.
The following code
clf; s = tf('s'); g = 1/(2*s^2+3*s+4); step(g); title ("Step response of a PT2 transfer function");
Produces the following figure
Figure 1 |
---|
The following code
clf; s = tf('s'); g = 1/(2*s^2+3*s+4); h = c2d(g,0.1); step(h); title ("Step response of a discretized PT2 transfer function");
Produces the following figure
Figure 1 |
---|
Package: control