You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
forced_response() uses scipy.signal.dlsim() when dealing with a discrete time system. However, since scipy.signal uses a different time-series to channel index convention, the data has to be transposed. This is done correctly for xout and you (fixed in #142) but not for U (and T and X0 but it does not matter for those 1D vectors):
forced_response()
usesscipy.signal.dlsim()
when dealing with a discrete time system. However, sincescipy.signal
uses a different time-series to channel index convention, the data has to be transposed. This is done correctly forxout
andyou
(fixed in #142) but not forU
(andT
andX0
but it does not matter for those 1D vectors):python-control/control/timeresp.py
Lines 323 to 329 in 31e6944
The text was updated successfully, but these errors were encountered: