diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-01-13 10:12:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 10:12:28 +0200 |
commit | 1176ae80daf6afdd1703fdfed7754cf71f363ebb (patch) | |
tree | 40f49dbfab9dad4c90619f1b2d531bcb2c9ae8d2 /doc | |
parent | 4a16f56a7e517665c161c6f0a590149153008aab (diff) | |
parent | 9d8681b69020f1f8d63cdacc178bc858069abd4f (diff) | |
download | numpy-1176ae80daf6afdd1703fdfed7754cf71f363ebb.tar.gz |
Merge pull request #12693 from eric-wieser/gh-9436-hermitian
ENH: Add a hermitian argument to `pinv` and `svd`, matching `matrix_rank`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.17.0-notes.rst | 6 |
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 c2052603d..10563f4c0 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 now accept a ``hermitian`` argument, matching the one added +to ``np.linalg.matrix_rank`` in 1.14.0. + + Improvements ============ |