I'm looking for a bessel function in Java that matches the Excel function BESSELI, description provided:
Returns the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.
Syntax *BESSELI(x,n)*
X is the value at which to evaluate the function.
N is the order of the Bessel function. If n is not an integer, it is truncated.
I have found things that look close, but there are many different types of bessel function...
My other option is to try and derive an approximation but that sounds quite tough. Can anyone give me any good advice on how to represent that excel function in Java?