summaryrefslogtreecommitdiff
path: root/numpy/polynomial/hermite_e.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/polynomial/hermite_e.py')
-rw-r--r--numpy/polynomial/hermite_e.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/polynomial/hermite_e.py b/numpy/polynomial/hermite_e.py
index d94d23a11..394f256a5 100644
--- a/numpy/polynomial/hermite_e.py
+++ b/numpy/polynomial/hermite_e.py
@@ -1732,7 +1732,6 @@ def hermegauss(deg):
c = np.array([0]*deg + [1])
m = hermecompanion(c)
x = la.eigvalsh(m)
- x.sort()
# improve roots by one application of Newton
dy = _normed_hermite_e_n(x, ideg)