numpy.random.uniform()
numpy.random.uniform
-
numpy.random.uniform(low=0.0, high=1.0, size=None)
-
Draw samples from a uniform distribution.
Samples are uniformly distributed over the half-open interval
[low, high)
(includes low, but excludes high). In other words, any value within the given interval is equally likely to be drawn byuniform
.Parameters: low : float, optional
Lower boundary of the output interval. All values generated will be greater than or equal to low. The default value is 0.
high : float
U