summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-04-04 19:57:55 -0600
committerGitHub <noreply@github.com>2020-04-04 19:57:55 -0600
commit569dfcd79aeb2a584e008861e5e29b7b5115d94e (patch)
tree931c0e7de585caecf890a48c3c11809642ed7e93 /doc
parent063b3140ec3792f0420da9f386d8240693213ec9 (diff)
parent72457f01832d10c72a1839aafc178cf4f53449cb (diff)
downloadnumpy-569dfcd79aeb2a584e008861e5e29b7b5115d94e.tar.gz
Merge pull request #15872 from Balandat/fix_eigh_mvn_sampling
BUG: Fix eigh and cholesky methods of numpy.random.multivariate_normal
Diffstat (limited to 'doc')
-rw-r--r--doc/release/upcoming_changes/15872.change.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/15872.change.rst b/doc/release/upcoming_changes/15872.change.rst
new file mode 100644
index 000000000..7c48dee3c
--- /dev/null
+++ b/doc/release/upcoming_changes/15872.change.rst
@@ -0,0 +1,6 @@
+`Fixed `eigh` and `cholesky` methods in `numpy.random.multivariate_normal``
+---------------------------------------------------------------------------
+
+Previously, when passing `method='eigh'` or `method='cholesky'`,
+`numpy.random.multivariate_normal` produced samples from the wrong
+distribution. This is now fixed.