diff options
author | Wojciech Rzadkowski <33913808+wrzadkow@users.noreply.github.com> | 2020-06-08 19:56:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 19:56:02 +0200 |
commit | fa5c5d1d66f7db17cb2bea137b5bb54deccd06b6 (patch) | |
tree | 71728750f0073646f886d8ddfe129aefccf33518 /numpy/polynomial/_polybase.py | |
parent | 0e2503bb6312e089b918c05ea667e5a591910903 (diff) | |
download | numpy-fa5c5d1d66f7db17cb2bea137b5bb54deccd06b6.tar.gz |
DOC: add the number of sample points as suggested
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
Diffstat (limited to 'numpy/polynomial/_polybase.py')
-rw-r--r-- | numpy/polynomial/_polybase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/_polybase.py b/numpy/polynomial/_polybase.py index 9106f9342..b5341ba37 100644 --- a/numpy/polynomial/_polybase.py +++ b/numpy/polynomial/_polybase.py @@ -920,7 +920,7 @@ class ABCPolyBase(abc.ABC): x : array_like, shape (M,) x-coordinates of the M sample points ``(x[i], y[i])``. y : array_like, shape (M,) - y-coordinates of the sample points ``(x[i], y[i])``. + y-coordinates of the M sample points ``(x[i], y[i])``. deg : int or 1-D array_like Degree(s) of the fitting polynomials. If `deg` is a single integer all terms up to and including the `deg`'th term are included in the |