Bessel functions of integer order
|
Bessel functions are defined as linear independent solutions of equation

This equation often arises when solving Laplas and Helmholtz equations in spherical or cylindric coordinates (electromagnetic wave transmission, transmission of heat and diffusion).
Bessel functions of the first kind, denoted as Jα (x), are solutions of Bessel's differential equation that are finite at the origin (x = 0) for non-negative integer α, and diverge as x approaches zero for negative non-integer α. α is referred to as the order of the Bessel function. Bessel function of the second kind is the second solution of Bessel's differential equation (the solutions are linear independent). Bessel functions could be extended on a complex plane. The important special case are modified Bessel functions Iα (x) and Kα (x) - linear combinations of pure imaginary arguments which possess real values.

Subroutines in this module calculate the values of Bessel functions of integer order. Bessel functions of fractional order could be calculated by using the subroutines from another module.
BesselJ0, BesselJ1 and BesselJN subroutines calculate the Bessel functions of the first kind of 0th, 1st and N-th order. BesselY0, BesselY1 and BesselYN subroutines calculate the Bessel functions of the second kind of 0th, 1st and N-th order. BesselI0 and BesselI1 subroutines calculate the modified Bessel functions of the first kind of 0th and 1st order. BesselK0, BesselK1 and BesselKN subroutines calculate the modified Bessel functions of the second kind of 0th, 1st and N-th order.
Piecewise rational approximation and Chebyshev polynomial approximation are used to calculate functions of 0th and 1st order, forward and backward recurrence and series expansion are used for higher order functions.
Report a bug
C#
C# 1.0 source.
bessel.csharp.zip - Bessel functions of integer order
C++
C++ source.
bessel.cpp.zip - Bessel functions of integer order
ablas.zip - optimized basic linear algebra subroutines with SSE2 support (for C++ sources only)
Delphi
Delphi source.
Can be compiled under FPC (in Delphi compatibility mode).
bessel.delphi.zip - Bessel functions of integer order
Visual Basic 6
Visual Basic 6 source.
bessel.vb6.zip - Bessel functions of integer order
Zonnon beta
Zonnon source.
Zonnon is an experimental language developed at ETH Zurich.
See www.zonnon.ethz.ch for more information.
bessel.zonnon.zip - Bessel functions of integer order
|