Special.BesselI Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

BesselI(Double, Complex<Double>) Evaluates the modified Bessel function of the first kind of real order and complex argument.
BesselI(Double, Double) Evaluates the modified Bessel function of the first kind of real order.

BesselI(Double, Complex<Double>)

Evaluates the modified Bessel function of the first kind of real order and complex argument.
C#
public static Complex<double> BesselI(
	double nu,
	Complex<double> z
)

Parameters

nu  Double
A real number that specifies the order of the Bessel function.
z  Complex<Double>
The value at which to evaluate the function.

Return Value

Complex<Double>
The value of the Bessel function of the first kind of order nu at z.

BesselI(Double, Double)

Evaluates the modified Bessel function of the first kind of real order.
C#
public static double BesselI(
	double nu,
	double x
)

Parameters

nu  Double
A real number that specifies the order of the Bessel function.
x  Double
The value at which to evaluate the function.

Return Value

Double
The modified Bessel function of the first kind of order 0.

See Also