标签: netlogo agent-based-modeling
NetLogo命令distance <agent>可用于查找一只乌龟与另一只乌龟的距离。 但是,我正在寻找每只乌龟都能找到[与它的距离+价格(一个乌龟变量)]的总和最小的乌龟。我怎样才能让海龟做到这一点?
distance <agent>
答案 0 :(得分:1)
@JenB的评论帮助我解决了这个问题。 set matchedseller min-one-of sellers [distance myself + price ]
set matchedseller min-one-of sellers [distance myself + price ]