Impulse response of a single-input continuous-time linear system.
The solution is generated by calling scipy.signal.lsim2, which uses the differential equation solver scipy.integrate.odeint.
Parameters : | system : an instance of the LTI class or a tuple describing the system.
T : 1D ndarray or array-like, optional
X0 : 1D ndarray or array-like, optional
N : int, optional
**kwargs : :
|
---|---|
Returns : | T : 1D ndarray
yout : ndarray
|
See also
Notes
New in version 0.8.0.