Special.BesselIScaled Method

Definition

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

Overload List

BesselIScaled(Double, Complex<Double>) Evaluates the modified Bessel function of the first kind of real order scaled by a factor exp(-|z|).
BesselIScaled(Double, Double) Evaluates the modified Bessel function of the first kind of real order scaled by a factor exp(-|x|).

BesselIScaled(Double, Complex<Double>)

Evaluates the modified Bessel function of the first kind of real order scaled by a factor exp(-|z|).
C#
public static Complex<double> BesselIScaled(
	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 modified Bessel function of the first kind of order nu evaluated at z scaled by a factor exp(-|z|).

BesselIScaled(Double, Double)

Evaluates the modified Bessel function of the first kind of real order scaled by a factor exp(-|x|).
C#
public static double BesselIScaled(
	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 nu evaluated at x scaled by a factor exp(-|x|).

See Also