Skip to content

Commit c5dbd09

Browse files
authored
Merge branch 'master' into dl/clenshawargorder
2 parents 4f02196 + 5260921 commit c5dbd09

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name = "FastTransforms"
22
uuid = "057dd010-8810-581a-b7be-e3fc3b93f78c"
33
version = "0.17"
44

5+
56
[deps]
67
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
78
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/GramMatrix.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function GramMatrix(μ::AbstractVector{T}, X::XT, p0::T) where {T, XT <: Abstrac
6464
n = (N+1)÷2
6565
@assert N == size(X, 1) == size(X, 2)
6666
@assert bandwidths(X) == (1, 1)
67-
W = Matrix{T}(undef, N, N)
67+
W = LowerTriangular(Matrix{T}(undef, N, N))
6868
if n > 0
6969
@inbounds for m in 1:N
7070
W[m, 1] = p0*μ[m]
File renamed without changes.

0 commit comments

Comments
 (0)