Matrix Inversion System
(Redirected from matrix inversion system)
Jump to navigation
Jump to search
A Matrix Inversion System is a matrix processing system that implements a matrix inversion algorithm to solve a matrix inversion task.
- Example(s):
- numpy.lingalg.inv [1] (in numpy.linalg).
- See: Invertible Matrix, Linear Algebra System.
References
2017
- https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.inv.html
- QUOTE: 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]).
- QUOTE: Compute the (multiplicative) inverse of a matrix.