We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 488431f commit 330ef1cCopy full SHA for 330ef1c
src/factorizations/svd.jl
@@ -200,7 +200,7 @@ true
200
svd(A; kwargs...) =
201
SVD(svd!(eigencopy_oftype(A, LinearAlgebra.eigtype(eltype(A))); kwargs...))
202
203
-LinearAlgebra.svdvals(usv::SVD{<:Any,T}) where {T} = (usv.S)::Vector{T}
+LinearAlgebra.svdvals(usv::SVD{<:Any,T}) where {T} = (usv.S)::AbstractVector{T}
204
205
# Added here to avoid type-piracy
206
eigencopy_oftype(A, S) = LinearAlgebra.eigencopy_oftype(A, S)
0 commit comments