Answers for "python sample uniform"

1

numpy random float array between 0 and 1

# Returns an array of floats between 0 and 10 of size 15
np.random.uniform(low=0, high=10, size=15)
Posted by: Guest on May-11-2020
1

uniform distribution python example

from random import uniform
array = []

for i in range(10):
	array.append(uniform(0.0, 100.0))

print(array)
[40.59813585027852, 68.7703401239061, 26.913790531262215, 2.439230591613828, 76.58211953479649, 42.42738253824879, 78.99082452505225, 42.01341952516737, 30.749439064487294, 79.55554892599972]
# random floating point values with uniform distribution
# (every number has the same chance)
Posted by: Guest on March-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language