Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Bessel and Hankel functions?

karpen
Beginner
971 Views
Hi, I'd like to find intrinsic or library procedures that calculate Bessel and Hankel functions for code compiled with ifort v11.1.067. Do such things exist? I could not find anything of the sort in the MKL documentation. Thanks for your help!
0 Kudos
1 Solution
TimP
Honored Contributor III
971 Views
Quoting - karpen
Hi, I'd like to find intrinsic or library procedures that calculate Bessel and Hankel functions for code compiled with ifort v11.1.067.
The usual Bessel functions, similar to gnu compiler libraries, are present in the compiler run-time library.
http://www.intel.com/software/products/compilers/docs/clin/main_cls/cref_cls/common/cppref_math_special.htm

not treated as intrinsics in the Fortran sense, although declarations are present in USE IFPORT

netlib.org, of course, has several versions of these.

View solution in original post

0 Kudos
1 Reply
TimP
Honored Contributor III
972 Views
Quoting - karpen
Hi, I'd like to find intrinsic or library procedures that calculate Bessel and Hankel functions for code compiled with ifort v11.1.067.
The usual Bessel functions, similar to gnu compiler libraries, are present in the compiler run-time library.
http://www.intel.com/software/products/compilers/docs/clin/main_cls/cref_cls/common/cppref_math_special.htm

not treated as intrinsics in the Fortran sense, although declarations are present in USE IFPORT

netlib.org, of course, has several versions of these.

0 Kudos
Reply