Skip to content

Commit 2d6219f

Browse files
committed
fix equations in docstrings
1 parent a80f19a commit 2d6219f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/svd.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,9 @@ end
280280
"""
281281
ldiv!(F::SVD, B; atol::Real=0, rtol::Real=atol>0 ? 0 : n*ϵ)
282282
283-
Given the SVD `F` of an $m \\times n$ matrix, multiply the first $m$ rows of `B` in-place
284-
by the Moore-Penrose pseudoinverse, storing the result in the first $n$ rows of `B`, returning `B`.
285-
This is equivalent to a least-squares solution (for $m \\ge n$) or a minimum-norm solution (for $m \\le n$).
283+
Given the SVD `F` of an ``m \\times n`` matrix, multiply the first ``m`` rows of `B` in-place
284+
by the Moore-Penrose pseudoinverse, storing the result in the first ``n`` rows of `B`, returning `B`.
285+
This is equivalent to a least-squares solution (for ``m \\ge n``) or a minimum-norm solution (for ``m \\le n``).
286286
287287
Similar to the [`pinv`](@ref) function, the solution can be regularized by truncating the SVD,
288288
dropping any singular values less than `max(atol, rtol*σ₁)` where `σ₁` is the largest singular value.

0 commit comments

Comments
 (0)