control.matlab.ctrb

control.matlab.ctrb(A, B)

Controllabilty matrix

Parameters
  • A (array_like or string) – Dynamics and input matrix of the system

  • B (array_like or string) – Dynamics and input matrix of the system

Returns

C – Controllability matrix

Return type

2D array (or matrix)

Notes

The return type for 2D arrays depends on the default class set for state space operations. See use_numpy_matrix().

Examples

>>> C = ctrb(A, B)