File tree Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 8
8
# where r1 and r2 are zeros of J0
9
9
# and P3 and Q8 are a 3 and 8 degree polynomial respectively
10
10
# Polynomial coefficients are from [1] which is based on [2]
11
- # See [1] for more details and [2] for coefficients of polynomials.
12
11
# For tiny arugments the power series expansion is used.
13
12
#
14
13
# Branch 2: 5.0 < x < 75.0
Original file line number Diff line number Diff line change 7
7
# bessely0 = R(x^2) + 2*log(x)*besselj0(x) / pi
8
8
# where r1 and r2 are zeros of J0
9
9
# and P3 and Q8 are a 3 and 8 degree polynomial respectively
10
- # Polynomial coefficients are from [1] which is based on [2]
11
- # See [1] for more details and [2] for coefficients of polynomials.
10
+ # Polynomial coefficients are from [1] which is based on [2].
12
11
# For tiny arugments the power series expansion is used.
13
12
#
14
13
# Branch 2: 5.0 < x < 75.0
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ j0_big = besselj0.(big.(x))
15
15
@test j0_big[1 ] isa BigFloat
16
16
17
17
# test against SpecialFunctions.jl
18
- @show maximum (abs .(j0_64 .- j0_SpecialFunctions))
19
18
@test j0_32 ≈ j0_SpecialFunctions
20
19
21
20
# BigFloat precision only computed to 128 bits
You can’t perform that action at this time.
0 commit comments