You can find the inverse of a matrix in Python using NumPy with the following code. If you want to learn Python then I will highly recommend you to read This Book.

Step 1
Import the required libraries.
Python
x
import numpy as np
import numpy.linalg as la
Step 2
Now make a matrix and find the inverse using la.inv(). Matrix should be non-singular.
Python
a = np.array([[1,2],[3,4]])
print(la.inv(a))
#output [[-2. 1. ]
#output [ 1.5 -0.5]]
People are also reading:
What is Computer Vision? Examples, Applications, Techniques
Top 10 Computer Vision Books with Python
Books for Machine Learning (ML)