TRY NEW VERSION

BESSELK

BESSELK(arg1, arg2) → { number | string | boolean }

Returns the modified Bessel function Kn(x).

Parameters:

Name Type Description
arg1 any

Is the value at which to evaluate the function.

arg2 any

Is the order of the function.

Returns:

Type
number | string | boolean

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.BESSELK(1.5, 1));
builder.SaveFile("xlsx", "BESSELK.xlsx");
builder.CloseFile();

Resulting document