I am trying to create a 2d array that has a specific min, max, mean and stddev. Long story short I am trying to use both
np.random.randint(min,max, size=(row,col)
np.random.normal(mu,sigma, size=(row,col)
at the same time. Does anyone know if a function has already been made for this? I've have a standard deviation matching function but it changes the min and max of the array as well unfortunately that could be another way to do it too.