control.issys

control.issys(obj)[source]

Return True if an object is a Linear Time Invariant (LTI) system, otherwise False

Examples

>>> G = ct.tf([1], [1, 1])
>>> ct.issys(G)
True
>>> K = np.array([[1, 1]])
>>> ct.issys(K)
False