Special.BesselKScaled Method

Definition

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

Overload List

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

BesselKScaled(Double, Complex<Double>)

Evaluates the modified Bessel function of the second kind of real order scaled by a factor exp(z).
C#
public static Complex<double> BesselKScaled(
	double nu,
	Complex<double> z
)

Parameters

nu  Double
A real number that specifies the order of the Bessel function.
z  Complex<Double>
A complex number.

Return Value

Complex<Double>
The modified Bessel function of the second kind of order nu evaluated at z and scaled by a factor exp(z).

BesselKScaled(Double, Double)

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

See Also