Given a scipy.sparse.csr.csr_matrix
, is there a quick way to return the elements on the diagonal?
The reason I would like to do this is to compute inv(D) A
, where D
is a diagonal matrix whose diagonal entries agree with A
(A
is my sparse matrix, guaranteed to have nonzeros on the diagonal).