Clicky
Showing changes from revision #2 to #3:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
bessel_j1(x)
computes the Bessel function of the first kind of order 1 of x
.
Fortran 2008 and later
result = bessel_j1(x)
result = bessel_j1(x)
(追記ここまで)
x
- The type shall be real
The return value is of type real
and(削除) it (削除ここまで) lies in the range- 0.5818... \\leq Bessel (0,x) \\leq 0.5818
. It has the same kind as x
.
program test_besj1
real(8) :: x = 1.0_8
x = bessel_j1(x)
end program test_besj1
(追記)
(追記ここまで)(追記) bessel_j0, bessel_jn, bessel_y0, bessel_y1, bessel_yn
(追記ここまで)