numpy.linalg.inv(a)
Compute the (multiplicative) inverse of a matrix.
Given a square matrix a, return the matrix ainv satisfying dot(a, ainv) = dot(ainv, a) = eye(a.shape[0]).
a
ainv
dot(a, ainv) = dot(ainv, a) = eye(a.shape[0])
a : (..., M, M) array_like
Matrix to be inverted.
ainv : (
联系方式: