在代理集中打印元素

时间:2016-02-04 19:45:11

标签: netlogo agentset

我想使用以下命令找到满足特定条件的补丁:

print patches with [ (closest-party = turtle 1) and (distance < 10)]

将结果作为结果:( agentset,7个补丁)

如何在该代理集中找到这7个补丁

1 个答案:

答案 0 :(得分:5)

如果myset是代理集,则[self] of myset将是代理列表。

let myset patches with [ (closest-party = turtle 1) and (distance < 10)] print [self] of myset

但通常你可以使用myset。例如,

ask myset [print self]