Constructs a SkipAheadStream object based on a given original stream.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public SkipAheadStream(
	RandomNumberStream originalStream,
	int streamNumber,
	int streamLength
)
Visual Basic (Declaration)
Public Sub New ( _
	originalStream As RandomNumberStream, _
	streamNumber As Integer, _
	streamLength As Integer _
)
Visual C++
public:
SkipAheadStream(
	RandomNumberStream^ originalStream, 
	int streamNumber, 
	int streamLength
)

Parameters

originalStream
Type: CenterSpace.NMath.Core..::.RandomNumberStream
Original random number sequence from which the created SkipAheadStream object is based.
streamNumber
Type: System..::.Int32
The stream number. If there are to be a total of k skip-ahead streams to be generated, this number should be between 0 and k - 1.
streamLength
Type: System..::.Int32
The length of skip-ahead stream.

See Also