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


Python NetworkX estrada_index用法及代碼示例


本文簡要介紹 networkx.algorithms.centrality.estrada_index 的用法。

用法:

estrada_index(G)

返回圖 G 的 Estrada 索引。

Estrada 索引是折疊或 3D “compactness” 的拓撲索引([1])。

參數

G: graph

返回

estrada index :浮點數

拋出

NetworkXError

如果圖不是無向且簡單的。

注意

G=(V,E) 為具有 n 節點的簡單無向圖,並令 lambda_{1}leqlambda_{2}leqcdotslambda_{n} 為其鄰接矩陣 A 的特征值的非遞增排序。 Estrada index為 ([1], [2])

參考

1(1,2)

E. Estrada, “Characterization of 3D molecular structure”, Chem. Phys. Lett. 319, 713 (2000). https://doi.org/10.1016/S0009-2614(00)00158-5

2

José Antonio de la Peñaa, Ivan Gutman, Juan Rada, “Estimating the Estrada index”, Linear Algebra and its Applications. 427, 1 (2007). https://doi.org/10.1016/j.laa.2007.06.020

例子

>>> G = nx.Graph([(0, 1), (1, 2), (1, 5), (5, 4), (2, 4), (2, 3), (4, 3), (3, 6)])
>>> ei = nx.estrada_index(G)
>>> print(f"{ei:0.5}")
20.55

相關用法


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