diff options
author | Endolith <endolith@gmail.com> | 2016-05-11 20:09:04 -0400 |
---|---|---|
committer | Endolith <endolith@gmail.com> | 2016-05-11 20:47:47 -0400 |
commit | eb8913d1a39e09b739a6e9449dc841a52ecbac37 (patch) | |
tree | f9e03d08f32addb3f068ceb74aec9f80f3a2b869 /numpy/lib/polynomial.py | |
parent | 2df36ec6bf0beb0258898003a182b03590bee0c1 (diff) | |
download | numpy-eb8913d1a39e09b739a6e9449dc841a52ecbac37.tar.gz |
DOC: Fix some incorrect RST definition lists
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index 189e59154..c0ab80ee8 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -439,7 +439,7 @@ def polyfit(x, y, deg, rcond=None, full=False, w=None, cov=False): Polynomial coefficients, highest power first. If `y` was 2-D, the coefficients for `k`-th data set are in ``p[:,k]``. - residuals, rank, singular_values, rcond : + residuals, rank, singular_values, rcond Present only if `full` = True. Residuals of the least-squares fit, the effective rank of the scaled Vandermonde coefficient matrix, its singular values, and the specified value of `rcond`. For more |