當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python SciPy csgraph.csgraph_masked_from_dense用法及代碼示例


本文簡要介紹 python 語言中 scipy.sparse.csgraph.csgraph_masked_from_dense 的用法。

用法:

scipy.sparse.csgraph.csgraph_masked_from_dense(graph, null_value=0, nan_null=True, infinity_null=True, copy=True)#

從密集矩陣構造掩碼數組圖表示。

參數

graph array_like

輸入圖。形狀應該是(n_nodes,n_nodes)。

null_value 浮點數或無(可選)

表示圖中非邊的值。默認為零。

infinity_null bool

如果為 True(默認值),則無限條目(正麵和負麵)被視為空邊。

nan_null bool

如果為 True(默認),則 NaN 條目被視為非邊

返回

csgraph MaskedArray

圖的掩碼數組表示

例子

>>> from scipy.sparse.csgraph import csgraph_masked_from_dense
>>> graph = [
... [0, 1, 2, 0],
... [0, 0, 0, 1],
... [0, 0, 0, 3],
... [0, 0, 0, 0]
... ]
>>> csgraph_masked_from_dense(graph)
masked_array(
  data=[[--,  1,  2, --],
        [--, --, --,  1],
        [--, --, --,  3],
        [--, --, --, --]],
  mask=[[ True, False, False,  True],
        [ True,  True,  True, False],
        [ True,  True,  True, False],
        [ True,  True,  True,  True]],
  fill_value=0)

相關用法


注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.sparse.csgraph.csgraph_masked_from_dense。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。