NLSetPatches(RNetLogo)
NLSetPatches()所属R语言包:RNetLogo
Function to set a patch variable of all patches of the NetLogo world to the values of a matrix.
以NetLogo世界的所有补丁一个补丁变量函数来设置矩阵的值。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
NLSetPatches is an easy-to-use way to set the values of all patches (NetLogo world) to the values of a matrix.
NLSetPatches是一个易于使用的方式设置的值的所有补丁的NetLogo世界矩阵的值。
用法----------Usage----------
NLSetPatches(patch.var, in.matrix, nl.obj=NULL)
参数----------Arguments----------
参数:patch.var
The name of the patch variable which should be set to the values of the matrix.
修补程序变量应该被设置为矩阵的值的名称。
参数:in.matrix
A matrix which is a representation of the NetLogo world (= same dimension).
的矩阵,这是一个以NetLogo世界(相同尺寸)表示。
参数:nl.obj
(optional) A variable holding a reference to a NetLogo instance created with NLStart.
(可选)变量参考到的NetLogo实例的创建与NLStart。
Details
详细信息----------Details----------
The matrix must have the same x- and y-dimension as the NetLogo world with indices beginning with (1,1). The upper-left cell (1,1) of the matrix represents the upper-left patch of the NetLogo World independent from the origin of the NetLogo World.
该矩阵必须具有相同的x和y维度的NetLogo世界作为指数与(1,1)开始。左上角的单元格(1,1)的矩阵表示的NetLogo世界以NetLogo世界从原点无关的左上角的贴剂。
值----------Value----------
No return value.
没有返回值。
(作者)----------Author(s)----------
Jan C. Thiele <jthiele@gwdg.de>
参见----------See Also----------
NLReport, NLGetAgentSet, NLGetGraph, NLDfToList
NLReport,NLGetAgentSet,NLGetGraph,NLDfToList
实例----------Examples----------
## Not run: [#不运行:]
NLStart("C:/Program Files/NetLogo 5.0")
m1 <- matrix(1:1089 , 33)
NLSetPatches(m1, "pcolor")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|