HTBasic Help
×
Menu
Index
Jhn
Bessel function of the first kind, order n+½.
 
Loading        LOADSUB ALL FROM "BESRS.HTS"
or LOADSUB FROM "MATHLIB.HTS"
 
Usage                INTEGER N
REAL X,Y
Y=FNJhn(N,X)
 
Description                
FNJhn returns the value of the cylindrical Bessel function of the first kind and order n+½ of x, Jn+½(x). Jn+½(x) is defined for all values of n and for all positive values of x. If n is positive or zero, Jn+½(x) is also defined for x = 0.
 
Errors                
FNJhn causes an HTBasic error if its arguments are not of the types shown in the USAGE section, above, or if x is out of the range of definition explained above.
 
See Also
Hh1n, Hh2n, Jn, Yhn
 
Jn+½(x)
The algorithm used computes the value of Jn+½ using a recursion from the values of J½ and J1½. The computation time increases with n and the computation accuracy decreases with n.