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

improved definitions of ishermitian/issymmetric #1266

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
19 changes: 15 additions & 4 deletions src/SHermitianCompact.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
"""
SHermitianCompact{N, T, L} <: StaticMatrix{N, N, T}

A [`StaticArray`](@ref) subtype that represents a Hermitian matrix. Unlike
A [`StaticArray`](@ref) subtype that can represent a Hermitian matrix. Unlike
`LinearAlgebra.Hermitian`, `SHermitianCompact` stores only the lower triangle
of the matrix (as an `SVector`). The lower triangle is stored in column-major order.
of the matrix (as an `SVector`), and the diagonal may not be real. The lower
triangle is stored in column-major order and the superdiagonal entries are
`adjoint` to the transposed subdiagonal entries. The diagonal is returned as-is.
For example, for an `SHermitianCompact{3}`, the indices of the stored elements
can be visualized as follows:

Expand All @@ -28,6 +30,13 @@ An `SHermitianCompact` may be constructed either:

For the latter two cases, only the lower triangular elements are used; the upper triangular
elements are ignored.

When its element type is real, then a `SHermitianCompact` is both Hermitian and
symmetric. Otherwise, to ensure that a `SHermitianCompact` matrix, `a`, is
Hermitian according to `LinearAlgebra.ishermitian`, take an average with its
adjoint, i.e. `(a+a')/2`, or take a Hermitian view of the data with
`LinearAlgebra.Hermitian(a)`. However, the latter case is not specialized to use
the compact storage.
"""
struct SHermitianCompact{N, T, L} <: StaticMatrix{N, N, T}
lowertriangle::SVector{L, T}
Expand Down Expand Up @@ -129,8 +138,10 @@ end
end
end

LinearAlgebra.ishermitian(a::SHermitianCompact) = true
LinearAlgebra.issymmetric(a::SHermitianCompact) = true
LinearAlgebra.ishermitian(a::SHermitianCompact{<:Any,<:Real}) = true
LinearAlgebra.ishermitian(a::SHermitianCompact) = a == a'
LinearAlgebra.issymmetric(a::SHermitianCompact{<:Any,<:Real}) = true
LinearAlgebra.issymmetric(a::SHermitianCompact) = a == transpose(a)

# TODO: factorize?

Expand Down
12 changes: 10 additions & 2 deletions test/SHermitianCompact.jl
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,21 @@ fill3(x) = fill(3, x)
@test issymmetric(a)

b = rand(SHermitianCompact{5, ComplexF64})
@test ishermitian(b)
@test issymmetric(b)
@test !ishermitian(b)
@test !issymmetric(b)

c = b + conj(b)
@test ishermitian(c)
@test issymmetric(c)
@test_noalloc ishermitian(c)

d = b + b'
@test ishermitian(d)
@test !issymmetric(d)

e = rand(SHermitianCompact{5, Float64}) + im*I
@test !ishermitian(e)
@test issymmetric(e)
end

@testset "==" begin
Expand Down
Loading