We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7592d4f commit 34dc394Copy full SHA for 34dc394
Project.toml
@@ -1,6 +1,6 @@
1
name = "Inti"
2
uuid = "fb74042b-437e-4c5b-88cf-d4e2beb394d5"
3
-version = "0.1.4"
+version = "0.1.5"
4
5
[deps]
6
Bessels = "0e736298-9ec6-45e8-9647-e4fc86a2fe38"
src/reference_integration.jl
@@ -108,7 +108,7 @@ order(::Fejer{N}) where {N} = N - 1
108
w = zero(x)
109
for j in 1:N
110
tmp = 0.0
111
- for l in 1:floor(N / 2)
+ for l in 1:floor(N/2)
112
tmp += 1 / (4 * l^2 - 1) * cos(2 * l * theta[j])
113
end
114
w[j] = 2 / N * (1 - 2 * tmp)
0 commit comments