Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Ortner committed Mar 26, 2024
1 parent 8fb9270 commit c4d96e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_linearsolvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ using PythonCall
Nobs = 10_000
Nfeat = 100
A1 = randn(Nobs, Nfeat) / sqrt(Nobs)
U, S1, V = svd(A)
U, S1, V = svd(A1)
S = 1e-4 .+ ((S .- S[end]) / (S[1] - S[end])).^2
A = U * Diagonal(S) * V'
c_ref = randn(Nfeat)
Expand Down

0 comments on commit c4d96e3

Please sign in to comment.