summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2019-01-07 22:51:15 -0800
committerEric Wieser <wieser.eric@gmail.com>2019-01-07 23:47:50 -0800
commitbebbe9d0c4c5b3e676d81d34f845adf4d54e15b1 (patch)
tree14c00a852430c94906371e56c0335f186de23f58 /doc
parent608fc9808f05abb41a44f92c63242a505accc844 (diff)
downloadnumpy-bebbe9d0c4c5b3e676d81d34f845adf4d54e15b1.tar.gz
ENH: Add a hermitian argument to `pinv` and `svd`, matching `matrix_rank`
Related to gh-9436
Diffstat (limited to 'doc')
-rw-r--r--doc/release/1.17.0-notes.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.17.0-notes.rst b/doc/release/1.17.0-notes.rst
index c97f9a58e..85cbb4f1d 100644
--- a/doc/release/1.17.0-notes.rst
+++ b/doc/release/1.17.0-notes.rst
@@ -45,6 +45,12 @@ identity, it is necessary to also pass in an initial value (e.g.,
``nansum`` would be, ``np.sum(a, where=~np.isnan(a))``.
+``np.linalg.svd`` and ``np.linalg.pinv`` can be faster on hermitian inputs
+--------------------------------------------------------------------------
+These functions have learnt the ``hermitian`` argument, matching the one added
+to ``np.linalg.matrix_rank`` in 1.14.0.
+
+
Improvements
============