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
np.random.random_sample(size) will generate random floats in the half-open interval [0.0, 1.0).
np.random.random_sample(size)