Uniform Distribution¶
Generates random numbers uniformly distributed on the interval \([a, b)\).
Details¶
Uniform random number generator fills the input \(n \times p\) numeric table with values that are uniformly distributed on the interval \([a, b)\), where \(a, b \in \mathbb{r}\) and \(a <> b\).
The probability density is given by:
The cumulative distribution function is as follows:
Batch Processing¶
Algorithm Parameters
Uniform distribution algorithm has the following parameters in addition to the common parameters specified in Distributions:
Parameter |
Default Value |
Description |
---|---|---|
|
|
The floating-point type that the algorithm uses for intermediate computations. Can be |
|
|
Performance-oriented computation method, the only method supported by the algorithm. |
|
\(0.0\) |
The left bound \(a\). |
|
\(1.0\) |
The right bound \(b\). |