diff options
Diffstat (limited to 'numpy/random/common.pyx')
-rw-r--r-- | numpy/random/common.pyx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/random/common.pyx b/numpy/random/common.pyx index 994de4345..0fd2d154a 100644 --- a/numpy/random/common.pyx +++ b/numpy/random/common.pyx @@ -45,6 +45,10 @@ cdef object random_raw(bitgen_t *bitgen, object lock, object size, object output Parameters ---------- + bitgen : BitGenerator + Address of the bit generator struct + lock : Threading.Lock + Lock provided by the bit generator size : int or tuple of ints, optional Output shape. If the given shape is, e.g., ``(m, n, k)``, then ``m * n * k`` samples are drawn. Default is None, in which case a |