Skip to content

Commit 1773afb

Browse files
authored
Add rectangular matrix tests for normest
1 parent 2210767 commit 1773afb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/test_normest.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ function simple_matrix_test_helper(S, ϵ_norm, ϵ)
1717
end
1818

1919
function simple_matrix_test(ϵ)
20-
(nrow, ncol) = (10, 10)
21-
for (nrow, ncol) in [(10, 10), (5, 5), (3, 3)]
20+
for (nrow, ncol) in [(10, 10), (5, 5), (3, 3), (3, 5), (5, 3), (5, 10), (10, 5)]
2221
ϵ_norm = eps(Float64)
2322
A1 = simple_matrix(ComplexF64, nrow, ncol)
2423
simple_matrix_test_helper(A1, ϵ_norm, ϵ)

0 commit comments

Comments
 (0)