BESSELJ
function BESSELJ(arg1: any = null, arg2: any = null): number | string | boolean
Description
Returns the Bessel function Jn(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.BESSELJ(1.9, 2));