summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorKevin Sheppard <bashtage@users.noreply.github.com>2019-03-28 14:49:51 +0000
committerMatti Picus <matti.picus@gmail.com>2019-03-28 16:49:51 +0200
commit39f0dbff0597af181c11cb3e50d0f055591f7952 (patch)
treeaac31624995610f3d42e87e1678a8605624fbcb6 /numpy
parente6147b9bf580361f2f74ac72003f81e957587528 (diff)
downloadnumpy-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.pyx2
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.