Skip to content

Commit

Permalink
Merge pull request numpy#13498 from arvoelke/pinv-doc
Browse files Browse the repository at this point in the history
DOC: Clarify rcond normalization in linalg.pinv
  • Loading branch information
charris authored May 8, 2019
2 parents 62694bd + 3f22c3e commit 634d66d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions numpy/linalg/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1900,9 +1900,9 @@ def pinv(a, rcond=1e-15, hermitian=False):
Matrix or stack of matrices to be pseudo-inverted.
rcond : (...) array_like of float
Cutoff for small singular values.
Singular values smaller (in modulus) than
`rcond` * largest_singular_value (again, in modulus)
are set to zero. Broadcasts against the stack of matrices
Singular values less than or equal to
``rcond * largest_singular_value`` are set to zero.
Broadcasts against the stack of matrices.
hermitian : bool, optional
If True, `a` is assumed to be Hermitian (symmetric if real-valued),
enabling a more efficient method for finding singular values.
Expand Down

0 comments on commit 634d66d

Please sign in to comment.