【发布时间】:2023-03-11 23:32:01
【问题描述】:
我想从稀疏矩阵中删除对角线元素。由于矩阵是稀疏的,这些元素一旦被移除就不应存储。
Scipy 提供了一种设置对角元素值的方法:setdiag
如果我尝试使用 lil_matrix,它会起作用:
>>> a = np.ones((2,2))
>>> c = lil_matrix(a)
>>> c.setdiag(0)
>>> c
<2x2 sparse matrix of type '<type 'numpy.float64'>'
with 2 stored elements in LInked List format>
但是使用 csr_matrix,似乎对角元素不会从存储中删除:
>>> b = csr_matrix(a)
>>> b
<2x2 sparse matrix of type '<type 'numpy.float64'>'
with 4 stored elements in Compressed Sparse Row format>
>>> b.setdiag(0)
>>> b
<2x2 sparse matrix of type '<type 'numpy.float64'>'
with 4 stored elements in Compressed Sparse Row format>
>>> b.toarray()
array([[ 0., 1.],
[ 1., 0.]])
通过一个密集的数组,我们当然有:
>>> csr_matrix(b.toarray())
<2x2 sparse matrix of type '<type 'numpy.float64'>'
with 2 stored elements in Compressed Sparse Row format>
这是故意的吗?如果是这样,是因为 csr 矩阵的压缩格式吗?除了从稀疏到密集再到稀疏之外,还有其他解决方法吗?
【问题讨论】:
标签: python scipy sparse-matrix