BESSELI

BESSELI(x, n)

Returns the Bessel function evaluated for purely imaginary arguments.

xThe value at which to evaluate the function.
nThe order of the function.

REMARKS
* If any of the arguments are not numeric, then #VALUE! is returned.
* If "n" is not an integer, it is truncated.
* If "n" < 0, then #NUM! is returned.
* For the Microsoft documentation refer to support.microsoft.com

 A
1=BESSELI(1, 1) = 0.565
2=BESSELI(1, 2) = 0.136
3=BESSELI(2, 1) = 1.591
4=BESSELI(2, 2) = 0.689
5=BESSELI(1.5, 1) = 0.982
6=BESSELI(1.5, 1.9) = 0.982
7=BESSELI(-1.5, 1) = -0.982
8=BESSELI(1.5, -1) = #NUM!
9=BESSELI("some text", 1) = #VALUE!
10=BESSELI(1.5, "some text") = #VALUE!


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top