Skip to main content

BESSELY

Returns the Bessel function Yn(x).

Syntax

expression.BESSELY(arg1, arg2);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe value at which to evaluate the function.
arg2RequiredApiRange | ApiName | numberThe order of the function.

Returns

number

Example

Evaluate the Bessel function of the second kind in a spreadsheet.

// How do I find the Bessel Y function result for signal analysis in a spreadsheet?

// Use mathematical modeling for vibration and resonance calculations in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("A1").SetValue(func.BESSELY(2.5, 1));