Overview of the RandomTools[MersenneTwister] Subpackage
|
Calling Sequence
|
|
RandomTools[MersenneTwister][function](arguments)
function(arguments)
|
|
Description
|
|
•
|
The RandomTools[MersenneTwister] subpackage contains functions for creating pseudo-random number generators using the Mersenne Twister algorithm. This algorithm has the following properties:
|
|
* period length of 2^19937-1
|
|
* 623-dimensional equidistribution property
|
|
* passed various tests, including the diehard test by G. Marsaglia and the load test by O.Hellekalek and S. Wegenkittl
|
•
|
The MersenneTwister algorithm is implemented in the kernel and is extremely fast. This algorithm is also used within the kernel for generating random rtables and random polynomials.
|
•
|
The MersenneTwister algorithm is intended to be used as a general purpose random number generator. It is good for randomized algorithm and generating random data. However the MersenneTwister has not been shown to produce numbers that can be considered cryptographically secure. For cryptography the BlumBlumShub generator should be used.
|
•
|
Each command in the RandomTools[MersenneTwister] subpackage can be accessed by using either the long form or the short form of the command name in the command calling sequence.
|
|
As the underlying implementation of the RandomTools[MersenneTwister] subpackage is a module, it is also possible to use the form MersenneTwister:-command to access a command from the package. For more information, see Module Members.
|
|
|
List of RandomTools[MersenneTwister] Subpackage Commands
|
|
|
|
References
|
|
|
Matsumoto, Makoto and Nishimura, Takuji. "Mersenne Twister: A 623-dimensionally equidistributed uniform pseudorandom number generator." ACM Transactions on Modeling and Computer Simulation, Vol 8, No 1, (January 1998): 3-30.
|
|
|
Download Help Document
Was this information helpful?