Skip to content

Commit 435417d

Browse files
authored
fix typo in docs
1 parent 8dea409 commit 435417d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/besseli.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
# Branch 1: x < 7.75
1010
# besseli0 = [x/2]^2 P16([x/2]^2)
11-
# Branch 2: x >=
11+
# Branch 2: x >= 7.75
1212
# sqrt(x) * exp(-x) * besseli0(x) = P22(1/x)
1313
# where P16 and P22 are a 16 and 22 degree polynomial respectively.
1414
#
@@ -23,8 +23,8 @@
2323
#
2424
# Branch 1: x < 7.75
2525
# besseli1 = x / 2 * (1 + 1/2 * (x/2)^2 + (x/2)^4 * P13([x/2]^2)
26-
# Branch 2: x >=
27-
# sqrt(x) * exp(-x) * besseli0(x) = P22(1/x)
26+
# Branch 2: x >= 7.75
27+
# sqrt(x) * exp(-x) * besseli1(x) = P22(1/x)
2828
# where P13 and P22 are a 16 and 22 degree polynomial respectively.
2929
#
3030
# Remez.jl is then used to approximate the polynomial coefficients of

0 commit comments

Comments
 (0)