On this page
numpy.matrix.I
attribute
matrix.I- 
    
Returns the (multiplicative) inverse of invertible
self.Parameters: - None
 
Returns: - 
           
ret : matrix object - 
           
If
selfis non-singular,retis such thatret * self==self * ret==np.matrix(np.eye(self[0,:].size)all returnTrue. 
Raises: - numpy.linalg.LinAlgError: Singular matrix
 - 
           
If
selfis singular. 
See also
Examples
>>> m = np.matrix('[1, 2; 3, 4]'); m matrix([[1, 2], [3, 4]]) >>> m.getI() matrix([[-2. , 1. ], [ 1.5, -0.5]]) >>> m.getI() * m matrix([[ 1., 0.], [ 0., 1.]]) 
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
 https://docs.scipy.org/doc/numpy-1.16.1/reference/generated/numpy.matrix.I.html