Matrix using python numpy [[3 1 1 2] [5 5 3 4] [2 0 6 2] [1 3 2 1]] I want to find the inverse matrix of. The algorithm is supposed to use the sweep method.
import math import numpy as np
A = np.array([[3,1,1,2],[5,5,3,4],[2,0,6,2],[1,3,2,1]])
print ('Original matrix A is') print(A) print( )
I can write so far.
Thank you.
Recommended Posts