File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -291,16 +291,16 @@ function bessely_positive_args(nu, x::T) where T
291
291
# x < ~nu branch see src/U_polynomials.jl
292
292
besseljy_debye_cutoff (nu, x) && return besseljy_debye (nu, x)[2 ]
293
293
294
- # x > ~nu branch see src/U_polynomials.jl on computing Hankel function
295
- hankel_debye_cutoff (nu, x) && return imag (hankel_debye (nu, x))
296
-
297
294
# large argument branch see src/asymptotics.jl
298
295
besseljy_large_argument_cutoff (nu, x) && return besseljy_large_argument (nu, x)[2 ]
299
296
297
+ # x > ~nu branch see src/U_polynomials.jl on computing Hankel function
298
+ hankel_debye_cutoff (nu, x) && return imag (hankel_debye (nu, x))
299
+
300
300
# use power series for small x and for when nu > x
301
301
bessely_series_cutoff (nu, x) && return bessely_power_series (nu, x)
302
302
303
- # for x ∈ (6, 19) we use chebyshev approximation and forward recurrence
303
+ # for x ∈ (6, 19) we use Chebyshev approximation and forward recurrence
304
304
besseljy_chebyshev_cutoff (nu, x) && return bessely_chebyshev (nu, x)
305
305
306
306
# at this point x > 19.0 (for Float64) and fairly close to nu
You can’t perform that action at this time.
0 commit comments