RandomState.rand()

RandomState.rand(d0, d1, ..., 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.

See also

random

Notes

This is a convenience function. If you want an interface that takes a shape-tuple as the first argument, refer to np.random.random_sample .

Examples

1
2
3
4
>>> np.random.rand(3,2)
array([[ 0.140224710.96360618],  #random
       [ 0.376010320.25528411],  #random
       [ 0.493130490.94909878]]) #random
doc_NumPy
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.