Skip to content

Commit 77e292e

Browse files
added forgotten besselj, bessely
1 parent 1c5be6e commit 77e292e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

float128.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,11 @@ for f in (:atan2, :copysign, :max, :min, :hypot,)
229229
end
230230
end
231231

232+
for f in (:besselj, :bessely,)
233+
@eval function $f(n::Integer, x::Float128)
234+
ccall(($(string(f,:_q)), :libfloat128), Float128, (Cint, Float128), n, x)
235+
end
236+
end
232237

233238
function -(x::Complex256)
234239
ccall((:cneg_q, :libfloat128), Complex256, (Complex256,), x)

0 commit comments

Comments
 (0)