Compute the inverse of a sparse matrix
Parameters : | A : ndarray or sparse matrix
|
---|---|
Returns : | Ainv : 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.