diff options
author | Robert Johansson <jrjohansson@gmail.com> | 2015-01-08 22:38:01 +0900 |
---|---|---|
committer | Robert Johansson <jrjohansson@gmail.com> | 2015-01-08 22:38:01 +0900 |
commit | 04bf8c92fd920675bc765fadc62f4d7ff6ede9b4 (patch) | |
tree | 3aa906ab122045765a7ed61b44e7d5dfdd20040e /numpy/polynomial | |
parent | 03c2bb872f81fa20f42451d8f236d0f4a034d598 (diff) | |
download | numpy-04bf8c92fd920675bc765fadc62f4d7ff6ede9b4.tar.gz |
Minor docstring fix
Diffstat (limited to 'numpy/polynomial')
-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 |