Skip to content

Commit 36e9840

Browse files
committed
tweak
1 parent b471016 commit 36e9840

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dense.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1735,8 +1735,8 @@ For solving dense, ill-conditioned equations in a least-square sense, it
17351735
is better to *not* explicitly form the pseudoinverse matrix, since this
17361736
can lead to numerical instability at low tolerances. The default `M \\ b`
17371737
algorithm instead uses pivoted QR factorization ([`qr`](@ref)). To use an
1738-
SVD-based algorithm, it is better to employ the SVD directly via `svd(M; rtol, atol) \\ b`,
1739-
or to pass `rtol` and `atol` parameters via [`ldiv!`](@ref) with `svd(M)`.
1738+
SVD-based algorithm, it is better to employ the SVD directly via `svd(M; rtol, atol) \\ b`
1739+
or `ldiv!(svd(M), b; rtol, atol)`.
17401740
17411741
One can also pass `M = svd(A)` as the argument to `pinv` in order to re-use
17421742
an existing [`SVD`](@ref) factorization.

0 commit comments

Comments
 (0)