diff options
author | Kevin Sheppard <bashtage@users.noreply.github.com> | 2019-03-28 14:49:51 +0000 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2019-03-28 16:49:51 +0200 |
commit | 39f0dbff0597af181c11cb3e50d0f055591f7952 (patch) | |
tree | aac31624995610f3d42e87e1678a8605624fbcb6 /numpy | |
parent | e6147b9bf580361f2f74ac72003f81e957587528 (diff) | |
download | numpy-39f0dbff0597af181c11cb3e50d0f055591f7952.tar.gz |
DOC: Use std docstring for multivariate normal (#13203)
Switch from python-style kwarg signature to style used for all other functions
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/random/mtrand/mtrand.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/mtrand/mtrand.pyx b/numpy/random/mtrand/mtrand.pyx index 445fd4a15..2426dbaa4 100644 --- a/numpy/random/mtrand/mtrand.pyx +++ b/numpy/random/mtrand/mtrand.pyx @@ -4422,7 +4422,7 @@ cdef class RandomState: def multivariate_normal(self, mean, cov, size=None, check_valid='warn', tol=1e-8): """ - multivariate_normal(mean, cov[, size, check_valid, tol]) + multivariate_normal(mean, cov, size=None, check_valid='warn', tol=1e-8) Draw random samples from a multivariate normal distribution. |