gpt4 book ai didi

distance - NetLogo:测量 2 个补丁之间的最大距离

转载 作者:行者123 更新时间:2023-12-05 03:13:20 28 4
gpt4 key购买 nike

我的问题真的很琐碎,但作为 NetLogo 的初学者,我仍然找不到我的答案..

我创建了一个斑驳的表面(可在此处获得:basic nlogo code)

to setup
clear-all
setup-patches
reset-ticks
end

;create patchy surface

to setup-patches
ask n-of 5 patches [ set pcolor green ]
ask patch 0 0 [ set pcolor yellow ]
show max-one-of patches with [pcolor = green] [distancexy 0 0]
end

我想用[pcolor = green]测量点0 0(黄色)和最远的补丁之间的距离。

在NetLogo中测量距离,我发现了两种可能:

  • distance 显示最远绿色补丁的坐标(对此不感兴趣)
  • distancexy 测量到我的点(我想要的)的欧氏距离

我尝试创建监视器以使用

观察距离测量
  • max-one-of patch with [pcolor = green] [distancexy 0 0 ] -> 返回我的 patch 坐标和
  • [distance patch 0 0 ] of max-one-of patches [distance myself] -> 返回 N/A。

请问,如何将这个距离值包含到我的代码中?如果我必须创建补丁自己的变量,我该如何将它包含到我的代码中?

非常感谢,

enter image description here

最佳答案

尝试使用max:

max [distancexy 0 0] of patches with [pcolor = green]

关于distance - NetLogo:测量 2 个补丁之间的最大距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30675075/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com