Clicky
Showing changes from revision #1 to #2:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
bessel_j1(x)
computes the(削除) Bessel (削除ここまで)(削除) function (削除ここまで)(削除) of (削除ここまで)(削除) the (削除ここまで)(削除) first (削除ここまで)(削除) kind (削除ここまで)(削除) of (削除ここまで)(削除) order (削除ここまで)(削除) 1 (削除ここまで)(削除) of (削除ここまで)(追記) Bessel function (追記ここまで)(追記) of the first kind of order 1 of (追記ここまで)x
.
(削除) Fortran 2008 (削除ここまで)(追記) Fortran 2008 (追記ここまで)(追記) and later (追記ここまで)
(削除) Elemental function (削除ここまで)(追記) Elemental function (追記ここまで)
result = bessel_j1(x)
x
- The type shall be real
, and it shall be scalar.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