Skip to content

Commit

Permalink
Fix docstring tests (CI runs on different LAPACK)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkdvos committed Jan 13, 2025
1 parent badd478 commit 1e67166
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/factorizations/svd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ julia> F = BlockSparseArrays.svd(A)
BlockSparseArrays.SVD{Float64, Float64, Matrix{Float64}, Vector{Float64}, Matrix{Float64}}
U factor:
4×4 Matrix{Float64}:
0.0 1.0 0.0 0.0
1.0 0.0 0.0 0.0
0.0 0.0 0.0 -1.0
0.0 0.0 1.0 0.0
0.0 1.0 0.0 0.0
1.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0
0.0 0.0 -1.0 0.0
singular values:
4-element Vector{Float64}:
3.0
Expand All @@ -49,10 +49,10 @@ singular values:
0.0
Vt factor:
4×5 Matrix{Float64}:
-0.0 0.0 1.0 -0.0 0.0
0.447214 0.0 0.0 0.0 0.894427
-0.0 1.0 0.0 -0.0 0.0
0.0 0.0 0.0 1.0 0.0
-0.0 0.0 1.0 -0.0 0.0
0.447214 0.0 0.0 0.0 0.894427
0.0 -1.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0 0.0
julia> F.U * Diagonal(F.S) * F.Vt
4×5 Matrix{Float64}:
Expand Down

0 comments on commit 1e67166

Please sign in to comment.