Skip to content

Commit 09c5721

Browse files
committed
fix removed method
1 parent 81c6e23 commit 09c5721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BesselFunctions/besseli.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ function _besseli(nu::T, x::T) where T <: Union{Float32, Float64}
428428
end
429429
else
430430
if x >= 0
431-
return besseli_positive_args(abs_nu, abs_x) + 2 / π * sinpi(abs_nu) * besselk_positive_args(abs_nu, abs_x)
431+
return besseli_positive_args(abs_nu, abs_x) + 2 / π * sinpi(abs_nu) * besselk(abs_nu, abs_x)
432432
else
433433
#Iv = besseli_positive_args(abs_nu, abs_x)
434434
#Kv = besselk_positive_args(abs_nu, abs_x)

0 commit comments

Comments
 (0)