File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
287287Similar to the [`pinv`](@ref) function, the solution can be regularized by truncating the SVD,
288288dropping any singular values less than `max(atol, rtol*σ₁)` where `σ₁` is the largest singular value.
You can’t perform that action at this time.
0 commit comments