diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-03-28 19:18:04 +0100 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-03-28 19:18:27 +0100 |
commit | 5bff3380b1c649d707bfc35a66b1e53ee3482025 (patch) | |
tree | 8c0e2f6fff782a4eb78cfcf4731b692cffdd63f7 /numpy/polynomial/chebyshev.py | |
parent | ab0642c9780a0c19c701facbc8ea85a278e4324d (diff) | |
download | numpy-5bff3380b1c649d707bfc35a66b1e53ee3482025.tar.gz |
DOC: remove obsolete NA reference from polyfit docs
Diffstat (limited to 'numpy/polynomial/chebyshev.py')
-rw-r--r-- | numpy/polynomial/chebyshev.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/polynomial/chebyshev.py b/numpy/polynomial/chebyshev.py index 6a2394382..b8303ef43 100644 --- a/numpy/polynomial/chebyshev.py +++ b/numpy/polynomial/chebyshev.py @@ -1607,11 +1607,6 @@ def chebfit(x, y, deg, rcond=None, full=False, w=None): where `n` is `deg`. - Since numpy version 1.7.0, chebfit also supports NA. If any of the - elements of `x`, `y`, or `w` are NA, then the corresponding rows of the - linear least squares problem (see Notes) are set to 0. If `y` is 2-D, - then an NA in any row of `y` invalidates that whole row. - Parameters ---------- x : array_like, shape (M,) |