diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-11-04 14:17:03 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-04 14:17:03 -0600 |
commit | fc6ba159a26836fe130b385ce0ceb9b9b939475d (patch) | |
tree | 9845982f217a4e9efb765120f01de4839051efef | |
parent | 62c83dd7a69ce72d566db5e0b45139420b856891 (diff) | |
download | numpy-fc6ba159a26836fe130b385ce0ceb9b9b939475d.tar.gz |
DOC: Remove "deprecated" from eigvalsh UPLO.
The UPLO parameter of eigvalsh was marked as deprecated, apparently in anticipation
of convergence with the scipy version which uses a `lower` boolean parameter. There is
no deprecation in the code, nor a lower parameter, so remove the deprecation.
[ci skip]
-rw-r--r-- | numpy/linalg/linalg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 9fd9056f0..6e5d58b90 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -929,8 +929,8 @@ def eigvalsh(a, UPLO='L'): A complex- or real-valued matrix whose eigenvalues are to be computed. UPLO : {'L', 'U'}, optional - Same as `lower`, with 'L' for lower and 'U' for upper triangular. - Deprecated. + Specifies whether the calculation is done with the lower triangular + part of `a` ('L', default) or the upper triangular part ('U'). Irrespective of this value only the real parts of the diagonal will be considered in the computation to preserve the notion of a Hermitian matrix. It therefore follows that the imaginary part of the diagonal |