summaryrefslogtreecommitdiff
path: root/numpy/lib/polynomial.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r--numpy/lib/polynomial.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py
index a1de6389f..bcb95ecf9 100644
--- a/numpy/lib/polynomial.py
+++ b/numpy/lib/polynomial.py
@@ -194,8 +194,8 @@ def polyfit(x, y, deg, rcond=None, full=False):
Returns
- full == False -- coeficients
- full == True -- coeficients, residuals, rank, singular values.
+ full == False -- coefficients
+ full == True -- coefficients, residuals, rank, singular values, rcond.
Warns
@@ -309,7 +309,7 @@ def polyfit(x, y, deg, rcond=None, full=False):
c /= vander([scale], order)[0]
if full :
- return c, resids, rank, s
+ return c, resids, rank, s, rcond
else :
return c