Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Define size for SVD #28439

Merged
merged 3 commits into from
Aug 5, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
github pampering
mohamed82008 committed Aug 5, 2018
commit e15884f0775e065491ff83256f85d73184657768
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/test/svd.jl
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted
# matrices from the factorization as expected.
@test sf1.U*Diagonal(sf1.S)*sf1.Vt' ≊ m1
@test sf2.U*Diagonal(sf2.S)*sf2.Vt' ≊ m2

@test ldiv!([0., 0.], svd(Matrix(I, 2, 2)), [1., 1.]) ≊ [1., 1.]
end