diff options
author | Danny Hermes <daniel.j.hermes@gmail.com> | 2017-01-19 11:36:27 -0800 |
---|---|---|
committer | Danny Hermes <daniel.j.hermes@gmail.com> | 2017-01-19 11:36:27 -0800 |
commit | e316832b52ddb3ac58167b1e5241344a77217365 (patch) | |
tree | 93153cd3295e3f346d8ee446d3e1e338937802d8 /numpy/polynomial/chebyshev.py | |
parent | 20d6ca1bd0c23cf22880ea72ae7abb4b67d41894 (diff) | |
download | numpy-e316832b52ddb3ac58167b1e5241344a77217365.tar.gz |
Changing spurious Legendre reference to Chebyshev in chebfit docstring.
Diffstat (limited to 'numpy/polynomial/chebyshev.py')
-rw-r--r-- | numpy/polynomial/chebyshev.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/chebyshev.py b/numpy/polynomial/chebyshev.py index 5d28b990f..44fb32b5f 100644 --- a/numpy/polynomial/chebyshev.py +++ b/numpy/polynomial/chebyshev.py @@ -1598,7 +1598,7 @@ def chebfit(x, y, deg, rcond=None, full=False, w=None): """ Least squares fit of Chebyshev series to data. - Return the coefficients of a Legendre series of degree `deg` that is the + Return the coefficients of a Chebyshev series of degree `deg` that is the least squares fit to the data values `y` given at points `x`. If `y` is 1-D the returned coefficients will also be 1-D. If `y` is 2-D multiple fits are done, one for each column of `y`, and the resulting |