Skip to content

Commit a3ff7ba

Browse files
committed
add author links in pages
1 parent c600f1a commit a3ff7ba

File tree

8 files changed

+77
-1
lines changed

8 files changed

+77
-1
lines changed

src/Float32/besseli.jl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Modified Bessel function of order zero
2+
# Modified Bessel function of order zero,
3+
# exponentially scaled
4+
#
5+
# Modified Bessel function of order one
6+
# Modified Bessel function of order one,
7+
# exponentially scaled
8+
#=
9+
Ported to Julia from:
10+
Cephes Math Library Release 2.2: June, 1992
11+
Copyright 1984, 1987, 1992 by Stephen L. Moshier
12+
Direct inquiries to 30 Frost Street, Cambridge, MA 02140
13+
https://github.com/jeremybarnes/cephes/blob/master/single/i0f.c
14+
https://github.com/jeremybarnes/cephes/blob/master/single/i1f.c
15+
=#
116
function besseli0(x::Float32)
217
T = Float32
318
if x < zero(x)

src/Float32/besselj.jl

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Bessel function of order zero
2+
#
3+
# Bessel function of order one
4+
#=
5+
Ported to Julia from:
6+
Cephes Math Library Release 2.2: June, 1992
7+
Copyright 1984, 1987, 1992 by Stephen L. Moshier
8+
Direct inquiries to 30 Frost Street, Cambridge, MA 02140
9+
https://github.com/jeremybarnes/cephes/blob/master/single/j0f.c
10+
https://github.com/jeremybarnes/cephes/blob/master/single/j1f.c
11+
=#
112
function besselj0(x::Float32)
213
T = Float32
314
x = abs(x)
@@ -47,4 +58,4 @@ function besselj1(x::Float32)
4758
p = p * cos(xn + x)
4859
return p
4960
end
50-
end
61+
end

src/Float32/besselk.jl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Modified Bessel function, third kind, order zero
2+
# Modified Bessel function, third kind, order zero,
3+
# exponentially scaled
4+
#
5+
# Modified Bessel function, third kind, order one
6+
# Modified Bessel function, third kind, order one,
7+
# exponentially scaled
8+
#=
9+
Ported to Julia from:
10+
Cephes Math Library Release 2.2: June, 1992
11+
Copyright 1984, 1987, 1992 by Stephen L. Moshier
12+
Direct inquiries to 30 Frost Street, Cambridge, MA 02140
13+
https://github.com/jeremybarnes/cephes/blob/master/single/k0f.c
14+
https://github.com/jeremybarnes/cephes/blob/master/single/k1f.c
15+
=#
116
function besselk0(x::Float32)
217
T = Float32
318
if x <= zero(x)

src/Float32/bessely.jl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Bessel function of second kind, order zero
2+
#
3+
# Bessel function of second kind, order one
4+
#=
5+
Ported to Julia from:
6+
Cephes Math Library Release 2.2: June, 1992
7+
Copyright 1984, 1987, 1992 by Stephen L. Moshier
8+
Direct inquiries to 30 Frost Street, Cambridge, MA 02140
9+
https://github.com/jeremybarnes/cephes/blob/master/single/j0f.c
10+
https://github.com/jeremybarnes/cephes/blob/master/single/j1f.c
11+
=#
112
function bessely0(x::Float32)
213
T = Float32
314
if x <= zero(x)

src/Float64/besseli.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#=
2+
Cephes Math Library Release 2.8: June, 2000
3+
Copyright 1984, 1987, 2000 by Stephen L. Moshier
4+
https://github.com/jeremybarnes/cephes/blob/master/bessel/i0.c
5+
https://github.com/jeremybarnes/cephes/blob/master/bessel/i1.c
6+
=#
17
function besseli0(x::Float64)
28
T = Float64
39
x = abs(x)

src/Float64/besselj.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#=
2+
Cephes Math Library Release 2.8: June, 2000
3+
Copyright 1984, 1987, 2000 by Stephen L. Moshier
4+
https://github.com/jeremybarnes/cephes/blob/master/bessel/j0.c
5+
https://github.com/jeremybarnes/cephes/blob/master/bessel/j1.c
6+
=#
17
function besselj0(x::Float64)
28
T = Float64
39
x = abs(x)

src/Float64/besselk.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#=
2+
Cephes Math Library Release 2.8: June, 2000
3+
Copyright 1984, 1987, 2000 by Stephen L. Moshier
4+
https://github.com/jeremybarnes/cephes/blob/master/bessel/k0.c
5+
https://github.com/jeremybarnes/cephes/blob/master/bessel/k1.c
6+
=#
17
function besselk0(x::Float64)
28
T = Float64
39
if x <= zero(x)

src/Float64/bessely.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#=
2+
Cephes Math Library Release 2.8: June, 2000
3+
Copyright 1984, 1987, 2000 by Stephen L. Moshier
4+
https://github.com/jeremybarnes/cephes/blob/master/bessel/j0.c
5+
https://github.com/jeremybarnes/cephes/blob/master/bessel/j1.c
6+
=#
17
function bessely0(x::Float64)
28
T = Float64
39
if x <= zero(x)

0 commit comments

Comments
 (0)