Skip to content

Commit d2b7b41

Browse files
authored
Fix another merge fail in inv of svd
1 parent fcc86bb commit d2b7b41

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/svd.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted
5656
@test_throws DimensionMismatch inv(svd(Matrix(I, 3, 2)))
5757
@test inv(svd(Matrix(I, 2, 2))) I
5858
@test inv(svd([1 2; 3 4])) [-2.0 1.0; 1.5 -0.5]
59-
@test pinv(svd([1 0 1; 0 1 0])) [0.5 0.0; 0.0 1.0; 0.5 0.0]
6059
@test_throws SingularException inv(svd([0 0; 0 0]))
6160
@test inv(svd([1+2im 3+4im; 5+6im 7+8im])) [-0.5 + 0.4375im 0.25 - 0.1875im; 0.375 - 0.3125im -0.125 + 0.0625im]
6261
end

0 commit comments

Comments
 (0)