File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,6 @@ default_svd_alg(A) = DivideAndConquer()
88
88
89
89
`svd!` is the same as [`svd`](@ref), but saves space by
90
90
overwriting the input `A`, instead of creating a copy. See documentation of [`svd`](@ref) for details.
91
- ```
92
91
"""
93
92
function svd! (A:: StridedMatrix{T} ; full:: Bool = false , alg:: Algorithm = default_svd_alg (A)) where T<: BlasFloat
94
93
m,n = size (A)
@@ -358,7 +357,6 @@ Base.iterate(S::GeneralizedSVD, ::Val{:done}) = nothing
358
357
359
358
`svd!` is the same as [`svd`](@ref), but modifies the arguments
360
359
`A` and `B` in-place, instead of making copies. See documentation of [`svd`](@ref) for details.
361
- ```
362
360
"""
363
361
function svd! (A:: StridedMatrix{T} , B:: StridedMatrix{T} ) where T<: BlasFloat
364
362
# xggsvd3 replaced xggsvd in LAPACK 3.6.0
You can’t perform that action at this time.
0 commit comments