Creates a SkipAheadRandomStreams object from the given parameters.

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

Syntax

C#
public SkipAheadRandomStreams(
	RandomNumberStream..::.BasicRandGenType randGenType,
	int numStreams,
	int streamLen
)
Visual Basic (Declaration)
Public Sub New ( _
	randGenType As RandomNumberStream..::.BasicRandGenType, _
	numStreams As Integer, _
	streamLen As Integer _
)
Visual C++
public:
SkipAheadRandomStreams(
	RandomNumberStream..::.BasicRandGenType randGenType, 
	int numStreams, 
	int streamLen
)

Parameters

randGenType
Type: CenterSpace.NMath.Core..::.RandomNumberStream..::.BasicRandGenType
Basic random number generator type. Must be one of RandomNumberStream.BasicRandGenType.MultiplicativeCongruent31, RandomNumberStream.BasicRandGenType.MultipleRecursive2x3, RandomNumberStream.BasicRandGenType.MultipleCongruential59, RandomNumberStream.BasicRandGenType.WinchannHillCombined.
numStreams
Type: System..::.Int32
Number of independent streams.
streamLen
Type: System..::.Int32
Length of each independent stream.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if randGenType is not one of the supported types.

See Also