Learn R Programming

rstream (version 1.3.7)

rstream.resetsubstream-methods: Methods for Function rstream.resetsubstream and rstream.nextsubstream in Package `rstream'

Description

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.

Usage

# S4 method for rstream
rstream.resetsubstream(stream)
# S4 method for rstream
rstream.nextsubstream(stream)

Arguments

stream

an "rstream" object.

Methods

Methods available for the following "rstream" subclasses: rstream.mrg32k3a.

Author

Josef Leydold josef.leydold@wu.ac.at

See Also

rstream.

Examples

Run this code
## 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")

Run the code above in your browser using DataLab