randomMt32Init

Initializes the 32-bit Mersenne Twister generator using an array.

Synopsis

randomMt32Init (key)

Required Arguments

unsigned int key[] (Input)
Array of length keyLength used to initialize the 32-bit Mersenne Twister generator.

Description

By default, the Mersenne Twister random number generator is initialized using the current seed value (see randomSeedGet). The seed is limited to one integer for initialization. This function allows an arbitrary length array to be used for initialization.

This function completely replaces the use of the seed for initialization of the 32-bit Mersenne Twister generator.

Example

See function randomMt32TableGet.