I've got a scipy.sparse_matrix A and I want to zero-out a decently-sized fraction of the elements. (In the matrices I'm working with today, A has about 70M entries and I want to zero-out about 700K of them). I have those elements available in a couple different formats, but for now they're in a sparse_matrix B of the same dimension as A with 0/1 values.
If these were dense matrices (EDIT: numpy arrays), I could do A = A-A*B but I haven't been able to come up with any easy way to do these with sparse matrices. (or really any way at all beyond (a) iterating through the elements in B and setting A to 0 at those elements or (b) converting everything to dense, which for the sizes I have will just barely fit in memory...)
(i,j)s.t.B[i,j] == 1? – larsmans Feb 12 at 20:11