summaryrefslogtreecommitdiff
path: root/numpy/lib/polynomial.py
diff options
context:
space:
mode:
authorgfyoung <gfyoung17@gmail.com>2015-12-21 19:12:32 -0800
committergfyoung <gfyoung@mit.edu>2015-12-22 16:24:19 -0800
commit33140978603936fe2c93555e6badce55a841d432 (patch)
tree999dc3dfd754d25363d1eb077ed1c0e642a9d602 /numpy/lib/polynomial.py
parent765422cfa5a959985808bbf11f7a6a58a9dc5e46 (diff)
downloadnumpy-33140978603936fe2c93555e6badce55a841d432.tar.gz
DOC: Fix poly_val description for 'x' input
Closes gh-6849.
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r--numpy/lib/polynomial.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py
index a5d3f5f5f..189e59154 100644
--- a/numpy/lib/polynomial.py
+++ b/numpy/lib/polynomial.py
@@ -61,7 +61,7 @@ def poly(seq_of_zeros):
See Also
--------
- polyval : Evaluate a polynomial at a point.
+ polyval : Compute polynomial values.
roots : Return the roots of a polynomial.
polyfit : Least squares polynomial fit.
poly1d : A one-dimensional polynomial class.
@@ -182,7 +182,7 @@ def roots(p):
--------
poly : Find the coefficients of a polynomial with a given sequence
of roots.
- polyval : Evaluate a polynomial at a point.
+ polyval : Compute polynomial values.
polyfit : Least squares polynomial fit.
poly1d : A one-dimensional polynomial class.
@@ -466,7 +466,7 @@ def polyfit(x, y, deg, rcond=None, full=False, w=None, cov=False):
See Also
--------
- polyval : Computes polynomial values.
+ polyval : Compute polynomial values.
linalg.lstsq : Computes a least-squares fit.
scipy.interpolate.UnivariateSpline : Computes spline fits.
@@ -631,7 +631,7 @@ def polyval(p, x):
to zero) from highest degree to the constant term, or an
instance of poly1d.
x : array_like or poly1d object
- A number, a 1D array of numbers, or an instance of poly1d, "at"
+ A number, an array of numbers, or an instance of poly1d, at
which to evaluate `p`.
Returns