Skip to content

Commit 9efd045

Browse files
Close #60
1 parent 117a7c8 commit 9efd045

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ChebyshevUltrasphericalPlan.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function ForwardChebyshevUltrasphericalPlan(c_ultra::AbstractVector{T},λ::T,M::
139139
tempsinλm = similar(tempsinλ)
140140

141141
# Initialize normalizing constant
142-
cnλ = Cnλ(0:N,λ)
142+
cnλ = Cnλ.(0:N,λ)
143143
cnmλ = similar(cnλ)
144144

145145
# Get indices
@@ -180,7 +180,7 @@ function BackwardChebyshevUltrasphericalPlan(c_ultra::AbstractVector{T},λ::T,M:
180180
tempsinλm = similar(tempsinλ)
181181

182182
# Initialize normalizing constant
183-
cnλ = Cnλ(0:2N,λ)
183+
cnλ = Cnλ.(0:2N,λ)
184184
cnmλ = similar(cnλ)
185185

186186
# Initialize orthonormality constants

0 commit comments

Comments
 (0)