This is documentation for an old release of SciPy (version 0.17.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.sparse.linalg.inv¶
- scipy.sparse.linalg.inv(A)[source]¶
Compute the inverse of a sparse matrix
Parameters: A : (M,M) ndarray or sparse matrix
square matrix to be inverted
Returns: Ainv : (M,M) ndarray or sparse matrix
inverse of A
Notes
This computes the sparse inverse of A. If the inverse of A is expected to be non-sparse, it will likely be faster to convert A to dense and use scipy.linalg.inv.
New in version 0.12.0.