NLCommand(RNetLogo)
NLCommand()所属R语言包:RNetLogo
Executes a command in the referenced NetLogo instance.
执行命令中所引用的NetLogo实例。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
NLCommand function is used to execute a NetLogo command (submitted as a string) in the submitted NetLogo instance.
NLCommand函数是用来执行的NetLogo命令(作为一个字符串提交)提交的NetLogo实例。
用法----------Usage----------
NLCommand(..., nl.obj=NULL)
参数----------Arguments----------
参数:...
An undefined number of strings with the NetLogo command(s) to be executed. Vectors, lists and data.frames will be represented as NetLogo-Lists. To set a NetLogo-List you can write 'set mylist',c(1,2,3) if the current NetLogo model knows a list named mylist. Furthermore, you can execute multiple commands at once, e.g. 'setup','go'
以NetLogo命令(s)未定义的数字的字符串将被执行。的NetLogo - 列出将被表示为向量,列表和data.frames。要设置的NetLogo列表,你可以写'set mylist',c(1,2,3)如果当前的NetLogo模型名为mylist知道。此外,您还可以执行多个命令,例如: 'setup','go'
参数:nl.obj
(optional) A variable holding a reference to a NetLogo instance created with NLStart.
(可选)变量参考到的NetLogo实例的创建与NLStart。
Details
详细信息----------Details----------
The command could be everything which can be submitted from the NetLogo Command Center. A command has no return value! If you want to return a value from NetLogo use NLReport and friends.
以NetLogo指挥中心可以提交该命令可以是一切。一个命令没有返回值!如果你想返回一个值的NetLogo使用NLReport和朋友。
值----------Value----------
No return value.
没有返回值。
(作者)----------Author(s)----------
Jan C. Thiele <jthiele@gwdg.de>
参见----------See Also----------
NLDoCommand, NLDoCommandWhile, NLReport
NLDoCommand,NLDoCommandWhile,NLReport
实例----------Examples----------
## Not run: [#不运行:]
NLStart("C:/Program Files/NetLogo 5.0")
NLCommand("create-turtles 10")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|