BESSELK
function BESSELK(arg1: any = null, arg2: any = null): number | string | boolean
Description
Returns the modified Bessel function Kn(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.BESSELK(1.5, 1));