BESSELI
function BESSELI(arg1: any = null, arg2: any = null): number | string | boolean
Description
Returns the modified Bessel function In(x).
Parameters
- arg1
any
null Is the value at which to evaluate the function.
- arg2
any
null Is the order of the Bessel function.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.BESSELI(3.5, 1));