I haven\'t been able to find a function to generate an array of random floats of a given length between a certain range.
I\'ve looked at Random sampling but no funct
Why not use a list comprehension?
In Python 2
ran_floats = [random.uniform(low,high) for _ in xrange(size)]
In Python 3, range works like xrange(ref)
range
xrange
ran_floats = [random.uniform(low,high) for _ in range(size)]