What kind of noise does numpy.random.random((NX,NY)) create? White noise? If it makes a difference, I sometimes instead make 3D or 1D noise (argument is (NX,NY,NZ) or (N,)).
What kind of noise does numpy.random.random((NX,NY)) create? White noise? If it makes a difference,
Share
As the help says,
numpy.random.random()supplies a “continuous uniform” distribution.For a “Gaussian/white noise” distribution use
numpy.random.normal().