scipy.sparse.csgraph.

csgraph_to_masked#

scipy.sparse.csgraph.csgraph_to_masked(csgraph)#

将稀疏图表示转换为掩码数组表示

在版本 0.11.0 中添加。

参数:
csgraphcsr_matrix、csc_matrix 或 lil_matrix

图的稀疏表示。

返回值:
graphMaskedArray

稀疏图的掩码密集表示。

示例

>>> from scipy.sparse import csr_matrix
>>> from scipy.sparse.csgraph import csgraph_to_masked
>>> graph = csr_matrix( [
... [0, 1, 2, 0],
... [0, 0, 0, 1],
... [0, 0, 0, 3],
... [0, 0, 0, 0]
... ])
>>> graph
<Compressed Sparse Row sparse matrix of dtype 'int64'
    with 4 stored elements and shape (4, 4)>
>>> csgraph_to_masked(graph)
masked_array(
  data=[[ --, 1.0, 2.0,  --],
        [ --,  --,  --, 1.0],
        [ --,  --,  --, 3.0],
        [ --,  --,  --,  --]],
  mask=[[ True, False, False,  True],
        [ True,  True,  True, False],
        [ True,  True,  True, False],
        [ True,  True,  True,  True]],
  fill_value=1e+20)