scipy.signal.StateSpace¶
-
class
scipy.signal.StateSpace(*system)[source]¶ Linear Time Invariant system class in state-space form.
Represents the system as the first order differential equation \(\dot{x} = A x + B u\).
Parameters: *system : arguments
The
StateSpaceclass can be instantiated with 1 or 4 arguments. The following gives the number of input arguments and their interpretation:- 1:
ltisystem: (StateSpace,TransferFunctionorZerosPolesGain) - 4: array_like: (A, B, C, D)
Notes
Changing the value of properties that are not part of the
StateSpacesystem representation (such aszerosorpoles) is very inefficient and may lead to numerical inaccuracies.Methods
- 1: