summaryrefslogtreecommitdiff
path: root/doc/release/upcoming_changes/14197.improvement.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/release/upcoming_changes/14197.improvement.rst')
-rw-r--r--doc/release/upcoming_changes/14197.improvement.rst16
1 files changed, 7 insertions, 9 deletions
diff --git a/doc/release/upcoming_changes/14197.improvement.rst b/doc/release/upcoming_changes/14197.improvement.rst
index d460fdab5..c0c52580a 100644
--- a/doc/release/upcoming_changes/14197.improvement.rst
+++ b/doc/release/upcoming_changes/14197.improvement.rst
@@ -1,9 +1,7 @@
-``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``
+``method`` keyword argument for `np.random.multivariate_normal`
+---------------------------------------------------------------
+A ``method`` keyword argument is now available for
+`np.random.multivariate_normal` with possible values
+``{'svd', 'eigh', 'cholesky'}``. To use it, write
+``np.random.multivariate_normal(..., method=<method>)``.
+