Methods for Function rstream.resetsubstream and rstream.nextsubstream in Package ‘rstream’
Some subclasses have implmented the concept of substreams. This is especially usefull if two or more streams should be synchronized.
This interface allows to jump to the beginning of the next substream and to reset the stream object to the beginning of the current substream.
## S4 method for signature 'rstream' rstream.resetsubstream(stream) ## S4 method for signature 'rstream' rstream.nextsubstream(stream)
stream |
an "rstream" object. |
Methods available for the following "rstream" subclasses:
rstream.mrg32k3a
.
Josef Leydold josef.leydold@wu.ac.at
## create a new rstream object (of subclass rstream.mrg32k3a) s <- new("rstream.mrg32k3a") ## jump to beginning of next substream rstream.nextsubstream(s) ## generate a sample x <- rstream.sample(s,10) ## reset substream rstream.resetsubstream(s) ## the new sample y is identical to x y <- rstream.sample(s,10) if (identical(x,y)) print("x and y are identical samples")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.