如何在netlogo中导入网络的邻接矩阵

时间:2016-05-17 07:51:18

标签: matrix social-networking netlogo adjacency-matrix

我有一个邻接矩阵,例如

  

0 1 0 1 0 1

     

1 1 1 1 1 0

     

0 1 1 0 1 1

     

0 1 1 1 0 1

     

0 0 0 1 0 1

     

0 1 0 1 0 1

矩阵是6x6矩阵,因为我有6个代理。

我想将此矩阵导入netlogo

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:2)

您可以使用内置nw扩展程序中的nw:load-matrix

你这样使用它:

nw:load-matrix "/path/to/matrix/file" turtles directed-links

其中directed-links是一个有向链接品种(我在这里指定了,从你的邻接矩阵开始,看起来你正在处理有向网络)。