diff options
author | Chunlin <fangchunlin@huawei.com> | 2020-04-25 23:33:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-25 10:33:48 -0500 |
commit | 6ee49178517088966e63c2aedf6a8a5779ad5384 (patch) | |
tree | 8ea96ee9757724dfb590bf359a90cd2c75196331 /numpy/polynomial/hermite_e.py | |
parent | 6d6df47fefdc503fbcffd8cb14a5daaa956ef220 (diff) | |
download | numpy-6ee49178517088966e63c2aedf6a8a5779ad5384.tar.gz |
DOC: Add missing bracket (gh-16051)
Add missing closing brackets, script to generate the list in the PR gh-16051.
Diffstat (limited to 'numpy/polynomial/hermite_e.py')
-rw-r--r-- | numpy/polynomial/hermite_e.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/polynomial/hermite_e.py b/numpy/polynomial/hermite_e.py index 1a18843ec..cbec15184 100644 --- a/numpy/polynomial/hermite_e.py +++ b/numpy/polynomial/hermite_e.py @@ -1187,7 +1187,7 @@ def hermevander2d(x, y, deg): ------- vander2d : ndarray The shape of the returned matrix is ``x.shape + (order,)``, where - :math:`order = (deg[0]+1)*(deg([1]+1)`. The dtype will be the same + :math:`order = (deg[0]+1)*(deg[1]+1)`. The dtype will be the same as the converted `x` and `y`. See Also @@ -1241,7 +1241,7 @@ def hermevander3d(x, y, z, deg): ------- vander3d : ndarray The shape of the returned matrix is ``x.shape + (order,)``, where - :math:`order = (deg[0]+1)*(deg([1]+1)*(deg[2]+1)`. The dtype will + :math:`order = (deg[0]+1)*(deg[1]+1)*(deg[2]+1)`. The dtype will be the same as the converted `x`, `y`, and `z`. See Also @@ -1362,8 +1362,8 @@ def hermefit(x, y, deg, rcond=None, full=False, w=None): Fits using HermiteE series are probably most useful when the data can be approximated by ``sqrt(w(x)) * p(x)``, where `w(x)` is the HermiteE - weight. In that case the weight ``sqrt(w(x[i])`` should be used - together with data values ``y[i]/sqrt(w(x[i])``. The weight function is + weight. In that case the weight ``sqrt(w(x[i]))`` should be used + together with data values ``y[i]/sqrt(w(x[i]))``. The weight function is available as `hermeweight`. References |