| box_muller | Box Muller transform: generates two Gaussian random variables
based on two uniform random variables
|
| poissrnd | Generation of Poisson-distributed random numbers
|
| rand | Creates a uniformly distributed data vector of length a (values are in the range [0,1[)
|
| rand_device | Helper function for creating a random matrix inside a kernel/device function.
Note - we use a special function for this purpose, so that there are no
concurrency problems (data races could affect the correlation in the generated
numbers).
|
| randn | Creates a Gaussian distributed data vector of length a (values are in the range [0,1[)
|
| randn_device | Helper function for creating a random matrix inside a kernel/device function.
Note - we use a special function for this purpose, so that there are no
concurrency problems (data races could affect the correlation in the generated
numbers).
|