[Python] numpy.random.rand

numpy.random.rand

numpy.random.rand(d0d1...dn)

Random values in a given shape.

Create an array of the given shape and populate it with random samples from a uniform distribution over [0, 1).

Parameters:

d0, d1, ..., dn : int, optional

The dimensions of the returned array, should all be positive. If no argument is given a single Python float is returned.

Returns:

out : ndarray, shape (d0, d1, ..., dn)

Random values.

 

import numpy as np

np.random.rand(n,m)

  

posted @ 2017-03-23 22:34  KennyRom  阅读(323)  评论(0编辑  收藏  举报