Yn

Description

Compute the Bessel function of the second kind of order n.

Syntax

double Yn( double x, int n)

Parameters

x
[input] independent variable
n
[input] order

Return

Yn(x)

Examples

EX1

void        Yn_ex1()
{
        double             x = 4.;
        int                n = 2;
        double             val = Yn(x, n);
                        
        printf("Yn(%f, %d) = %f\n", x, n, val);
}

Remark

See Also

Y1

header to Include

origin.h

Reference