WorksheetFunction.BesselI Method

Returns the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.

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

Syntax

'Declaration
Function BesselI ( _
    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.BesselI(Arg1, Arg2)
double BesselI(
    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 Bessel function. If n is not an integer, it is truncated.

Return Value

Type: System.Double

Remarks

If x is nonnumeric, BesselI returns the #VALUE! error value.

If n is nonnumeric, BesselI generates an error value.

If n < 0, BesselI generates an error value.

The n-th order modified 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