WorksheetFunction.BesselY Method

Returns the Bessel function, which is also called the Weber function or the Neumann function.

Namespace:  Microsoft.Office.Interop.Excel
Assembly:  Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)

Syntax

'Declaration
Function BesselY ( _
    Arg1 As Object, _
    Arg2 As Object _
) As Double
'Usage
Dim instance As WorksheetFunction
Dim Arg1 As Object
Dim Arg2 As Object
Dim returnValue As Double

returnValue = instance.BesselY(Arg1, Arg2)
double BesselY(
    Object Arg1,
    Object Arg2
)

Parameters

  • Arg1
    Type: System.Object

    The value at which to evaluate the function.

  • Arg2
    Type: System.Object

    The order of the function. If n is not an integer, it is truncated.

Return Value

Type: System.Double

Remarks

If x is nonnumeric, BesselY generates an error value.

If n is nonnumeric, BesselY generates an error value.

If n < 0, BesselY generates an error value.

The n-th order Bessel function of the variable x is:

Figure 1: Bessel function of the variable x

Bessel function of the variable x

See Also

Reference

WorksheetFunction Interface

WorksheetFunction Members

Microsoft.Office.Interop.Excel Namespace