当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy csgraph.csgraph_to_masked用法及代码示例


本文简要介绍 python 语言中 scipy.sparse.csgraph.csgraph_to_masked 的用法。

用法:

scipy.sparse.csgraph.csgraph_to_masked(csgraph)#

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

参数

csgraph csr_matrix、csc_matrix 或 lil_matrix

图的稀疏表示。

返回

graph MaskedArray

稀疏图的掩码密集表示。

例子

>>> 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
<4x4 sparse matrix of type '<class 'numpy.int64'>'
    with 4 stored elements in Compressed Sparse Row format>
>>> 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)

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.sparse.csgraph.csgraph_to_masked。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。