Yn
Compute the Bessel function of the second kind of order n.
double Yn( double x, int n)
Yn(x)
EX1
void Yn_ex1() { double x = 4.; int n = 2; double val = Yn(x, n); printf("Yn(%f, %d) = %f\n", x, n, val); }
Y1
origin.h