control.use_numpy_matrix

control.use_numpy_matrix(flag=True, warn=True)

Turn on/off use of Numpy matrix class for state space operations.

Parameters
  • flag (bool) – If flag is True (default), use the deprecated Numpy matrix class to represent matrices in the ~control.StateSpace class and functions. If flat is False, then matrices are represented by a 2D ndarray object.

  • warn (bool) – If flag is True (default), issue a warning when turning on the use of the Numpy matrix class. Set warn to false to omit display of the warning message.

Notes

Prior to release 0.9.x, the default type for 2D arrays is the Numpy matrix class. Starting in release 0.9.0, the default type for state space operations is a 2D array.