Skip to content

Commit d9b307f

Browse files
committed
Fix docstring tests (CI runs on different LAPACK)
1 parent f03bed2 commit d9b307f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/factorizations/svd.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ julia> F = BlockSparseArrays.svd(A)
3737
BlockSparseArrays.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}, Matrix{Float64}}
3838
U factor:
3939
4×4 Matrix{Float64}:
40-
0.0 1.0 0.0 0.0
41-
1.0 0.0 0.0 0.0
42-
0.0 0.0 0.0 -1.0
43-
0.0 0.0 1.0 0.0
40+
0.0 1.0 0.0 0.0
41+
1.0 0.0 0.0 0.0
42+
0.0 0.0 0.0 1.0
43+
0.0 0.0 -1.0 0.0
4444
singular values:
4545
4-element Vector{Float64}:
4646
3.0
@@ -49,10 +49,10 @@ singular values:
4949
0.0
5050
Vt factor:
5151
4×5 Matrix{Float64}:
52-
-0.0 0.0 1.0 -0.0 0.0
53-
0.447214 0.0 0.0 0.0 0.894427
54-
-0.0 1.0 0.0 -0.0 0.0
55-
0.0 0.0 0.0 1.0 0.0
52+
-0.0 0.0 1.0 -0.0 0.0
53+
0.447214 0.0 0.0 0.0 0.894427
54+
0.0 -1.0 0.0 0.0 0.0
55+
0.0 0.0 0.0 1.0 0.0
5656
5757
julia> F.U * Diagonal(F.S) * F.Vt
5858
4×5 Matrix{Float64}:

0 commit comments

Comments
 (0)