{ } Raw JSON

bundles / numpy 2.4.4 / numpy / matlib / rand

function

numpy.matlib:rand

source: /numpy/matlib.py :233

Signature

def   rand ( * args )

Summary

Return a matrix of random values with given shape.

Extended Summary

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

Parameters

\*args : Arguments

Shape of the output. If given as N integers, each integer specifies the size of one dimension. If given as a tuple, this tuple gives the complete shape.

Returns

out : ndarray

The matrix of random values with shape given by \*args.

Examples

np.random.seed(123)
import numpy.matlib
np.matlib.rand(2, 3)
np.matlib.rand((2, 3))
If the first argument is a tuple, other arguments are ignored:
np.matlib.rand((2, 3), 4)

See also

numpy.random.RandomState.rand
randn

Aliases

  • numpy.matlib.rand