Simulate the output of a linear system.
As a convenience for parameters U
and X0
, numbers (scalars) are converted to constant arrays with the correct shape. The correct shape is inferred from arguments sys
and T
.
StateSpace
or TransferFunction
LTI system to simulate.
Input array giving input at each time T
(default = 0). If U
is None or 0, a special algorithm is used. This special algorithm is faster than the general algorithm, which is used otherwise.
sys
Time steps at which the input is defined; values must be evenly spaced.
Initial condition (default = 0).
Response of the system.
Time values of the output.
Time evolution of the state vector.
Examples
>>> from control.matlab import rss, lsim
>>> G = rss(4) >>> T = np.linspace(0,10) >>> yout, T, xout = lsim(G, T=T)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4