diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-04-14 22:11:15 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2019-04-14 22:31:34 +0200 |
commit | 5343bc84bbbd36df73b4678d5f58c2cbcc1dda85 (patch) | |
tree | 943e3c9b74fb6243299b8dd07f22d0baf17487dc /numpy/polynomial | |
parent | 524abf2f43b0f6d5baaec14c5e1a5feb53610f73 (diff) | |
download | numpy-5343bc84bbbd36df73b4678d5f58c2cbcc1dda85.tar.gz |
DOC: fix some more See Also issues
These ones just generated warnings, not build failures
Diffstat (limited to 'numpy/polynomial')
-rw-r--r-- | numpy/polynomial/chebyshev.py | 3 | ||||
-rw-r--r-- | numpy/polynomial/hermite.py | 3 | ||||
-rw-r--r-- | numpy/polynomial/hermite_e.py | 3 | ||||
-rw-r--r-- | numpy/polynomial/laguerre.py | 3 | ||||
-rw-r--r-- | numpy/polynomial/legendre.py | 3 |
5 files changed, 5 insertions, 10 deletions
diff --git a/numpy/polynomial/chebyshev.py b/numpy/polynomial/chebyshev.py index b5ba1bd2a..e4d10bcb8 100644 --- a/numpy/polynomial/chebyshev.py +++ b/numpy/polynomial/chebyshev.py @@ -528,8 +528,7 @@ def chebfromroots(roots): See Also -------- - polyfromroots, legfromroots, lagfromroots, hermfromroots, - hermefromroots. + polyfromroots, legfromroots, lagfromroots, hermfromroots, hermefromroots Examples -------- diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py index 73c35098e..4bfd89e52 100644 --- a/numpy/polynomial/hermite.py +++ b/numpy/polynomial/hermite.py @@ -272,8 +272,7 @@ def hermfromroots(roots): See Also -------- - polyfromroots, legfromroots, lagfromroots, chebfromroots, - hermefromroots. + polyfromroots, legfromroots, lagfromroots, chebfromroots, hermefromroots Examples -------- diff --git a/numpy/polynomial/hermite_e.py b/numpy/polynomial/hermite_e.py index aa5b62df0..735d66e6c 100644 --- a/numpy/polynomial/hermite_e.py +++ b/numpy/polynomial/hermite_e.py @@ -273,8 +273,7 @@ def hermefromroots(roots): See Also -------- - polyfromroots, legfromroots, lagfromroots, hermfromroots, - chebfromroots. + polyfromroots, legfromroots, lagfromroots, hermfromroots, chebfromroots Examples -------- diff --git a/numpy/polynomial/laguerre.py b/numpy/polynomial/laguerre.py index a402b0191..025a09929 100644 --- a/numpy/polynomial/laguerre.py +++ b/numpy/polynomial/laguerre.py @@ -269,8 +269,7 @@ def lagfromroots(roots): See Also -------- - polyfromroots, legfromroots, chebfromroots, hermfromroots, - hermefromroots. + polyfromroots, legfromroots, chebfromroots, hermfromroots, hermefromroots Examples -------- diff --git a/numpy/polynomial/legendre.py b/numpy/polynomial/legendre.py index 731172e53..f06b294cf 100644 --- a/numpy/polynomial/legendre.py +++ b/numpy/polynomial/legendre.py @@ -301,8 +301,7 @@ def legfromroots(roots): See Also -------- - polyfromroots, chebfromroots, lagfromroots, hermfromroots, - hermefromroots. + polyfromroots, chebfromroots, lagfromroots, hermfromroots, hermefromroots Examples -------- |