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