Skip to content

Commit da1a371

Browse files
authored
Merge pull request #255 from wsshin/diagm-with-Val
Support Val{k} as second argument in diagm
2 parents 588c0a8 + 43b8bfa commit da1a371

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

src/linalg.jl

+11-5
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,18 @@ end
172172
end
173173
end
174174

175-
@inline diagm(v::StaticVector) = _diagm(Size(v), v)
176-
@generated function _diagm(::Size{S}, v::StaticVector) where {S}
177-
Snew = (S[1], S[1])
175+
@inline diagm(v::StaticVector, k::Type{Val{D}}=Val{0}) where {D} = _diagm(Size(v), v, k)
176+
@generated function _diagm(::Size{S}, v::StaticVector, ::Type{Val{D}}) where {S,D}
177+
S1 = S[1]
178+
Snew1 = S1+abs(D)
179+
Snew = (Snew1, Snew1)
180+
Lnew = Snew1 * Snew1
178181
T = eltype(v)
179-
exprs = [i == j ? :(v[$i]) : zero(T) for i = 1:S[1], j = 1:S[1]]
182+
ind = diagind(Snew1, Snew1, D)
183+
exprs = fill(:(zero($T)), Lnew)
184+
for n = 1:S[1]
185+
exprs[ind[n]] = :(v[$n])
186+
end
180187
return quote
181188
$(Expr(:meta, :inline))
182189
@inbounds return similar_type($v, Size($Snew))(tuple($(exprs...)))
@@ -323,4 +330,3 @@ end
323330

324331
@inline Base.LinAlg.Symmetric(A::StaticMatrix, uplo::Char='U') = (Base.LinAlg.checksquare(A);Symmetric{eltype(A),typeof(A)}(A, uplo))
325332
@inline Base.LinAlg.Hermitian(A::StaticMatrix, uplo::Char='U') = (Base.LinAlg.checksquare(A);Hermitian{eltype(A),typeof(A)}(A, uplo))
326-

test/linalg.jl

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ using StaticArrays, Base.Test
4040

4141
@testset "diagm()" begin
4242
@test @inferred(diagm(SVector(1,2))) === @SMatrix [1 0; 0 2]
43+
@test @inferred(diagm(SVector(1,2,3), Val{2}))::SMatrix == diagm([1,2,3], 2)
44+
@test @inferred(diagm(SVector(1,2,3), Val{-2}))::SMatrix == diagm([1,2,3], -2)
4345
end
4446

4547
@testset "diag()" begin

0 commit comments

Comments
 (0)