I would like to multiply single rows of a csr matrix with a scalar. In numpy I would do
matrix[indices,:] = x * matrix[indices,:]
For csr this raises an exception in scipy.
Is there a way to do this similarily with csr matrixes?
|
|
No, there's no way to this directly, because although you can compute
which you can update in-place, i.e.
(This obviously works for multiplication and other operations that preserve sparsity, but not things like addition.) |
||||
|
|