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
Alternatively you could use SciPy
from scipy import stats stats.uniform(0.5, 13.3).rvs(50)
and for the record to sample integers it's
stats.randint(10, 20).rvs(50)