The discrete uniform distribution is a discrete distribution bounded on [min, max] with constant probability at every value on or between the bounds. Sometimes called the discrete rectangular distribution, it arises when an event can have a finite and equally probable number of outcomes.
- Description
- Generates a sample of the discrete uniform distribution in the interval [0, max], both 0 and max included! Is equivalent to uniform_discr(0, max). For more details, see uniform_discr(int, int).
- Parameters
-
Name Type Description max int The maximum x value. - Result
-
Type Description double The generated sample.
- Description
- Generates a sample of the discrete uniform distribution on the interval [min, max], both min and max included!
- Parameters
-
Name Type Description min int The minimum x value. max int The maximum x value. - Result
-
Type Description double The generated sample.
- Description
- Generates a sample of the Discrete Uniform distribution on the interval [min, max] using the specified random number generator, both min and max included! For more details, see uniform_discr(int, int).
- Parameters
- Parameters
-
Name Type Description min int The minimum x value. max int The maximum x value. r java.util.Random The random number generator. - Result
-
Type Description double The generated sample.
-
How can we improve this article?
-