How to generate a random integer as with np.random.randint()
, but with a normal distribution around 0.
np.random.randint(-10, 10)
returns integers with a discrete uniform distribution np.random.normal(0, 0.1, 1)
returns floats with a normal distribution
What I want is a kind of combination between the two functions.
Aucun commentaire:
Enregistrer un commentaire