역행렬구하기 



1
2
3
4
5
6
7
8
import numpy as np
import numpy.linalg as lin
= np.array([[2,2,0],[-2,1,1],[3,0,1]])
lin.inv(k)
#array([[ 0.08333333, -0.16666667,  0.16666667],
#       [ 0.41666667,  0.16666667, -0.16666667],
#       [-0.25      ,  0.5       ,  0.5       ]])
cs









+ Recent posts