CreateStream(rlecuyer)
CreateStream()所属R语言包:rlecuyer
Spawn new streams
产生新的流
译者:生物统计家园网 机器人LoveR
描述----------Description----------
.lec.CreateStream creates new streams of random
.lec.CreateStream创建新的数据流的随机
用法----------Usage----------
.lec.CreateStream (names)
参数----------Arguments----------
参数:names
a character string or a vector of character strings naming the streams to be created. The argument must be provided and the names must be unique within the set of existing streams. If for one i a stream of the name names[i] already exists, its state is replaced by the state of the new created stream.
一个字符串或字符串命名要创建的流的向量。必须提供的参数和组内的现有流的名称必须是唯一的。如果一个i流的名称names[i]已经存在,它的状态是更换新创建的流的状态。
Details
详细信息----------Details----------
.lec.CreateStream is a wrapper function for the C function RngStream_CreateStream (L'Ecuyer et al, 2002). The state of the created stream returned by the C function is stored in the global object .lec.Random.seed.table.
.lec.CreateStream是一个包装函数的C函数RngStream_CreateStream(LEcuyer等,2002)。的C函数返回所创建的流的状态被存储在全局对象.lec.Random.seed.table。
值----------Value----------
None.
无。
参考文献----------References----------
Object-Oriented Random-Number Package With Many Long Streams and
实例----------Examples----------
nstreams <- 10 # number of streams[的数据流数]
names <- paste("mystream",1:nstreams,sep="")
.lec.CreateStream(names)
.lec.WriteStateFull(names)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|