We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39eccd8 commit 9ccda4eCopy full SHA for 9ccda4e
test/solve.jl
@@ -54,5 +54,8 @@ end
54
@test SX isa StaticMatrix # test not falling back to Base
55
@test SX ≈ X
56
@test eltype(SX) == eltype(X)
57
+
58
+ v_bad = @SVector ones(n+1)
59
+ @test_throws DimensionMismatch A\v_bad
60
end
61
test/sqrtm.jl
@@ -3,5 +3,6 @@
3
@test sqrtm(@SMatrix [5 2; -2 1])::SMatrix ≈ sqrtm([5 2; -2 1])
4
@test sqrtm(@SMatrix [4 2; -2 1])::SMatrix ≈ sqrtm([4 2; -2 1])
5
@test sqrtm(@SMatrix [4 2; 2 1])::SMatrix ≈ sqrtm([4 2; 2 1])
6
+ @test sqrtm(@SMatrix [0 0; 0 0])::SMatrix ≈ sqrtm([0 0; 0 0])
7
@test sqrtm(@SMatrix [1 2 0; 2 1 0; 0 0 1])::SizedArray{Tuple{3,3}} ≈ sqrtm([1 2 0; 2 1 0; 0 0 1])
8
0 commit comments