C Language and Libraries Help (clang.hlp) (
Table of Contents;
Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
Bessel Functions
◄Description► ◄Example► ◄Up► ◄Contents► ◄Index► ◄Back►
─────Run-Time Library───────────────────────────────────────────────────────
Include: <math.h>
Syntax: double _j0( double x );
double _j1( double x );
double _jn( int n, double x );
double _y0( double x );
double _y1( double x );
double _yn( int n, double x );
Returns: the result of a Bessel function of <x> if successful.
(_y0, _y1, and _yn return -HUGE_VAL if <x> is negative.)
errno: EDOM (set by _y0, _y1, and _yn if <x> is negative)
See also: _j0l, _j1l, _jnl, _y0l, _y1l, _ynl, _matherr
-♦-