diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-04-04 19:57:55 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 19:57:55 -0600 |
commit | 569dfcd79aeb2a584e008861e5e29b7b5115d94e (patch) | |
tree | 931c0e7de585caecf890a48c3c11809642ed7e93 /doc | |
parent | 063b3140ec3792f0420da9f386d8240693213ec9 (diff) | |
parent | 72457f01832d10c72a1839aafc178cf4f53449cb (diff) | |
download | numpy-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.rst | 6 |
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. |