[Python] numpy.random.rand
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python] numpy.random.rand相关的知识,希望对你有一定的参考价值。
numpy.random.rand
- numpy.random.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.
import numpy as np np.random.rand(n,m)
以上是关于[Python] numpy.random.rand的主要内容,如果未能解决你的问题,请参考以下文章