Exponential Distribution Checker
A Program that Runs Experiments on Generating Random Numbers with an Exponential Distribution
|
Header for generating exponentially distributed random numbers. More...
Go to the source code of this file.
Functions | |
float | UniformRand () |
Uniform random number generator. | |
float | ExpRand () |
Exponential random number generator. | |
float | ExpRand (float omega) |
Exponential random number generator with lifted tail. | |
float ExpRand | ( | ) |
A random number generator that generates an exponentially distributed pseudorandom floating point number between 0 and 1.
float ExpRand | ( | float | omega | ) |
A random number generator that generates an exponentially distributed pseudorandom floating point number between 0 and 1 with the tail of the distribution artificially lifted up.
omega | The tail multiplier, which controls how low the tails of the distribution can be. |
float UniformRand | ( | ) |
A random number generator that generates a uniformly distributed pseudorandom floating point number between 0 and 1.