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 02a3b1f commit 0c4140bCopy full SHA for 0c4140b
stdlib/LinearAlgebra/test/svd.jl
@@ -63,7 +63,8 @@ a2img = randn(n,n)/2
63
@test_throws ErrorException usv.Z
64
b = rand(eltya,n)
65
@test usv\b ≈ a\b
66
-
+ @test Base.propertynames(usv) == (:U, :S, :V, :Vt)
67
+ @test size(usv) == size(a)
68
if eltya <: BlasFloat
69
svdz = svd!(Matrix{eltya}(undef,0,0))
70
@test svdz.U ≈ Matrix{eltya}(I, 0, 0)
0 commit comments