I need to get a random numpy array and each value must be with 2 decimals. I have tried something like this:
wH2 = np.random.uniform(0, 100, 2)
wH2 = np.around(wH2,2)
But around is modifying the values from the array.
ex: After around 0.7485443 will be 0.75. I need to keep it 0.74
Can someone help me?