Jn-func
This function returns the Bessel function of order n (where n is an integer):
Jn(x, n)
The formula for the equation is:
See the gammaln(x) function for the definition of .
double Jn(double x, int n)
x
n
Returns the value of n order Bessel function at x.
b0 = j0(5); b0 = ; //b0=-0.17759677131434 bn0 = jn(5,0); bn0 = ; //bn0=-0.17759677131434 b5 = jn(5,5); b5 = ; //b5=0.26114054612017
J0, J1, Y0, Y1, Yn