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
This is the simplest way
np.random.uniform(start,stop,(rows,columns))