Click or drag to resize

RandomNumberGeneratorCreateNextMT2203 Method

Creates the next pseudo random generator in the sequence of Mersenne Twister 2203 generators having the specified seed.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static RandomNumberGenerator CreateNextMT2203(
	int seed
)

Parameters

seed
Type: SystemInt32
The seed of the generator.

Return Value

Type: RandomNumberGenerator
The next MT 2203 generator having the specified seed.
Remarks

There are 6024 MT2203 pseudo random number generators. The MT 2203 generators guarantee mutual independence of the corresponding random number sequences. Every MT 2203 generator has a period length equal to LaTeX equation.

Method CreateNextMT2203(Int32) increments the iterator to the next position in the sequence, or to the first position beyond the end of sequence if the sequence has been completely traversed.

See Also