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

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

结果如下:(agentset,7个补丁)

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

最佳答案

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

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

但是通常您只能使用myset。例如。,
ask myset [print self]

关于netlogo - 打印代理集中的元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35210207/

10-10 16:26