qc.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.
Long Double Bessel Functions
 Description Example                     Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Include:   <math.h>
 
  Syntax:    long double _j0l( long double x );
             long double _j1l( long double x );
             long double _jnl( int n, long double x );
             long double _y0l( long double x );
             long double _y1l( long double x );
             long double _ynl( int n, long double x );
 
  Returns:   the result of a Bessel function of <x> if successful.
             (y0l, y1l, and ynl return -HUGE_VAL if <x> is negative.)
             errno: EDOM (set by y0l, y1l, and ynl if <x> is negative)
 
  See also:  j0, j1, jn, matherr, _matherrl, y0, y1, yn
                                    -♦-