  | SkipAheadRandomStreams(RandomNumberStreamBasicRandGenType, Int32, Int32) Constructor | 
            Creates a SkipAheadRandomStreams object from the given parameters.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic SkipAheadRandomStreams(
	RandomNumberStreamBasicRandGenType randGenType,
	int numStreams,
	int streamLen
)
Public Sub New ( 
	randGenType As RandomNumberStreamBasicRandGenType,
	numStreams As Integer,
	streamLen As Integer
)
public:
SkipAheadRandomStreams(
	RandomNumberStreamBasicRandGenType randGenType, 
	int numStreams, 
	int streamLen
)
new : 
        randGenType : RandomNumberStreamBasicRandGenType * 
        numStreams : int * 
        streamLen : int -> SkipAheadRandomStreamsParameters
- randGenType  RandomNumberStreamBasicRandGenType
 - Basic random number generator type. Must be one
            of
            RandomNumberStream.BasicRandGenType.MultiplicativeCongruent31,
            RandomNumberStream.BasicRandGenType.MultipleRecursive2x3,
            RandomNumberStream.BasicRandGenType.MultipleCongruential59,
            RandomNumberStream.BasicRandGenType.WinchannHillCombined.
            
 - numStreams  Int32
 - Number of independent streams.
 - streamLen  Int32
 - Length of each independent stream.
 
Exceptions
See Also