Special.BesselI0 Method

Definition

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

Overload List

BesselI0(Complex<Double>) Evaluates the modified Bessel function of the first kind of order 0 for complex argument.
BesselI0(Double) Evaluates the modified Bessel function of the first kind of order 0.

BesselI0(Complex<Double>)

Evaluates the modified Bessel function of the first kind of order 0 for complex argument.
C#
public static Complex<double> BesselI0(
	Complex<double> z
)

Parameters

z  Complex<Double>
The value at which to evaluate the function.

Return Value

Complex<Double>
The modified Bessel function of the first kind of order 0 at z.

BesselI0(Double)

Evaluates the modified Bessel function of the first kind of order 0.
C#
public static double BesselI0(
	double x
)

Parameters

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