diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2019-10-16 12:46:56 +0100 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2019-10-16 13:05:19 +0100 |
commit | 033907bae4ee39eeb27234eda1c80e60009dd5ed (patch) | |
tree | e5f46a07300b80bde67da6d470789544513ca0d8 /doc | |
parent | e1d991c7772d1b1a15551ad620cdd24fd377a846 (diff) | |
download | numpy-033907bae4ee39eeb27234eda1c80e60009dd5ed.tar.gz |
DOC: Move misplaced changelog
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/upcoming_changes/14197.improvement.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/14197.improvement.rst b/doc/release/upcoming_changes/14197.improvement.rst new file mode 100644 index 000000000..d460fdab5 --- /dev/null +++ b/doc/release/upcoming_changes/14197.improvement.rst @@ -0,0 +1,9 @@ +``method`` and ``use_factor`` options for `np.random.multivariate_normal` +---------------------------------------------------- +A ``method`` option is now available for `np.random.multivariate_normal` with +possible values {'svd', 'eigh', 'cholesky'}. To use it, write +``np.random.multivariate_normal(..., method=<method>)``. Another option +``use_factor`` is now available which allows the user to pass a precomputed +factor of a covariance matrix in order to speed up computation. To use it, +write ``np.random.multivariate_normal(..., use_factor=True)``. The ``method`` +option is ignored when ``use_factor=True`` |