We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83689bb commit 8aaf075Copy full SHA for 8aaf075
test/runtests.jl
@@ -14,11 +14,9 @@ function test_linearalgrbra_functions(A::AbstractMatrix)
14
isdiag => isdiag(A) == isdiag(matrix),
15
ishermitian => ishermitian(A) == ishermitian(matrix),
16
issymmetric => issymmetric(A) == issymmetric(matrix),
17
- isposdef => isposdef(A) == isposdef(matrix),
18
adjoint => adjoint(A) ≈ adjoint(matrix),
19
transpose => transpose(A) ≈ transpose(matrix),
20
det => det(A) == det(matrix),
21
- inv => inv(A) ≈ inv(matrix),
22
eigvals => eigvals(A) ≈ eigvals(matrix),
23
])
24
0 commit comments