Next: BESY0, Previous: BESJ1, Up: Intrinsic Procedures
BESJN — Bessel function of the first kindBESJN(N, X) computes the Bessel function of the first kind of order
N of X.
     If both arguments are arrays, their ranks and shapes shall conform.
     
RESULT = BESJN(N, X)
     | N | Shall be a scalar or an array of type INTEGER(*). | 
| X | Shall be a scalar or an array of type REAL(*). | 
REAL(*).
               program test_besjn
            real(8) :: x = 1.0_8
            x = besjn(5,x)
          end program test_besjn
     
     | Name | Argument | Return type | Standard | 
| DBESJN(X) | INTEGER(*) N | REAL(8) | GNU extension | 
| REAL(8) X |  |