How to initialize a matrix with random number (say 0 to 0.01)?
A = numpy.random.rand(2,3)
This gives the result:
>>A
array([[ 0.45378345, 0.33203662, 0.42980284],
[ 0.2150098 , 0.39427043, 0.10036063]])
But how to specify the range of random numbers ( 0 to 0.01)?