diff options
-rw-r--r-- | numpy/polynomial/hermite.py | 2 | ||||
-rw-r--r-- | numpy/polynomial/hermite_e.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py index 1d3bef390..60bca1874 100644 --- a/numpy/polynomial/hermite.py +++ b/numpy/polynomial/hermite.py @@ -1799,7 +1799,7 @@ class Hermite(ABCPolyBase): Parameters ---------- coef : array_like - Laguerre coefficients in order of increasing degree, i.e, + Hermite coefficients in order of increasing degree, i.e, ``(1, 2, 3)`` gives ``1*H_0(x) + 2*H_1(X) + 3*H_2(x)``. domain : (2,) array_like, optional Domain to use. The interval ``[domain[0], domain[1]]`` is mapped diff --git a/numpy/polynomial/hermite_e.py b/numpy/polynomial/hermite_e.py index fce13a84e..d94d23a11 100644 --- a/numpy/polynomial/hermite_e.py +++ b/numpy/polynomial/hermite_e.py @@ -1796,7 +1796,7 @@ class HermiteE(ABCPolyBase): Parameters ---------- coef : array_like - Laguerre coefficients in order of increasing degree, i.e, + HermiteE coefficients in order of increasing degree, i.e, ``(1, 2, 3)`` gives ``1*He_0(x) + 2*He_1(X) + 3*He_2(x)``. domain : (2,) array_like, optional Domain to use. The interval ``[domain[0], domain[1]]`` is mapped |