[Previous] [Contents] [Next]

yn(), ynf()

Compute a Bessel function of the second kind

Synopsis:

#include <math.h>

double yn( int n, 
           double x );

float ynf( int n, 
           float x );

Library:

libbessel

Description:

Compute the Bessel function of the second kind for n and x.

Returns:

The result of the Bessel function of n and x.

Classification:

yn() is standard Unix; ynf() is ANSI (draft)

Safety:
Cancellation point No
Interrupt handler No
Signal handler No
Thread Yes

See also:

errno, j0(), j1(), jn(), y0(), y1()


[Previous] [Contents] [Next]