diff options
author | CJ Carey <perimosocordiae@gmail.com> | 2017-02-02 12:27:36 -0500 |
---|---|---|
committer | CJ Carey <perimosocordiae@gmail.com> | 2017-09-16 10:22:49 -0400 |
commit | ae1191b656654b18deeba44bb6ecc084f0b41737 (patch) | |
tree | 62a4476567edca51515141efdf686bbdbeab5ae0 /doc | |
parent | 7da52beb00b7c5d44ed1c946f2b43692d6ec4e1a (diff) | |
download | numpy-ae1191b656654b18deeba44bb6ecc084f0b41737.tar.gz |
ENH: add hermitian=False kwarg to matrix_power
With a symmetric matrix, the more efficient `eigvalsh` method
can be used to find singular values.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.14.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.14.0-notes.rst b/doc/release/1.14.0-notes.rst index b961f3cb2..3bb8bf794 100644 --- a/doc/release/1.14.0-notes.rst +++ b/doc/release/1.14.0-notes.rst @@ -241,6 +241,12 @@ Changes 0d arrays now use the array2string formatters to print their elements, like other arrays. The ``style`` argument of ``array2string`` is now non-functional. +``np.linalg.matrix_rank`` is more efficient for hermitian matrices +------------------------------------------------------------------ +The keyword argument ``hermitian`` was added to toggle between standard +SVD-based matrix rank calculation and the more efficient eigenvalue-based +method for symmetric/hermitian matrices. + Integer scalars are now unaffected by ``np.set_string_function`` ---------------------------------------------------------------- Previously the str/repr of integer scalars could be controlled by |