gpt4 book ai didi

netlogo - 如何在Netlogo中直接保存.txt文件的数据?

转载 作者:行者123 更新时间:2023-12-05 04:17:16 25 4
gpt4 key购买 nike

我有一个经常在 ask[] 中调用的过程“读取文件”。来自 read file lines with spaces into NetLogo as lists , 此过程将文件 .txt 读取为列表。是否可以直接在 Netlogo 中保存文件 .txt 的数据以节省时间,因为为每只海龟读取文件 .txt 会降低模型速度?

to read-file
let parameters split-into-n-lists 1 read-file-into-list "Parameters.txt"
end

在此先感谢您的帮助。

最佳答案

您可能不应该在ask 中调用read-file 文件。假设文件中的数据在模拟过程中没有改变,你应该调用它一次(可能在 setup 期间)并在你的 ask .

而且我不完全确定这就是“直接在 Netlogo 中保存文件 .txt 的数据”的意思,但您也可以直接在代码中初始化列表:

globals [
a b c
]

to setup
set a [2321 2321 2321 213]
set b [23233 3223 313 321]
set c [2 2 1 1]
end

关于netlogo - 如何在Netlogo中直接保存.txt文件的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24071210/

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