Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在网络 xi 中使用图可以从图 G 中调用节点 n 的以下属性:
G.node[n] {'type': 'a', 'pos': [0.22, 0.33]}
我可以访问不同的属性(键),如下所示
G.node[n]['pos']
但我不知道如何只访问“pos”的第一个或第二个元素?IE
0.22
有任何想法吗?
这为您提供了第一个元素:
G.node[n]['pos'][0]