diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/random/_generator.pyx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/random/_generator.pyx b/numpy/random/_generator.pyx index 85dfef034..78a74a766 100644 --- a/numpy/random/_generator.pyx +++ b/numpy/random/_generator.pyx @@ -3788,6 +3788,12 @@ cdef class Generator: Each entry ``out[i,j,...,:]`` is a ``p``-dimensional value drawn from the distribution. + Notes + ----- + + .. versionchanged:: 1.22.0 + Added support for broadcasting of arguments + Examples -------- Throw a dice 20 times: |