scipy.sparse.coo_array.

tocsc#

coo_array.tocsc(copy=False)[source]#

將此陣列/矩陣轉換為壓縮稀疏行格式

重複的條目將會加總在一起。

範例

>>> from numpy import array
>>> from scipy.sparse import coo_array
>>> row  = array([0, 0, 1, 3, 1, 0, 0])
>>> col  = array([0, 2, 1, 3, 1, 0, 0])
>>> data = array([1, 1, 1, 1, 1, 1, 1])
>>> A = coo_array((data, (row, col)), shape=(4, 4)).tocsc()
>>> A.toarray()
array([[3, 0, 1, 0],
       [0, 2, 0, 0],
       [0, 0, 0, 0],
       [0, 0, 0, 1]])