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


Python NetworkX add_star用法及代码示例


本文简要介绍 networkx.classes.function.add_star 的用法。

用法:

add_star(G_to_add_to, nodes_for_star, **attr)

在图形 G_to_add_to 中添加一个星号。

nodes_for_star 中的第一个节点是星的中间。它连接到所有其他节点。

参数

G_to_add_to图形

NetworkX 图

nodes_for_star可迭代容器

节点容器。

attr关键字参数,可选(默认=无属性)

要添加到星中每个边的属性。

例子

>>> G = nx.Graph()
>>> nx.add_star(G, [0, 1, 2, 3])
>>> nx.add_star(G, [10, 11, 12], weight=2)

相关用法


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