Special.BesselK Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

BesselK(Double, Double) Evaluates the modified Bessel function of the second kind.
BesselK(Int32, Double) Evaluates the modified Bessel function of the second kind of integer order.

BesselK(Double, Double)

Evaluates the modified Bessel function of the second kind.
C#
public static double BesselK(
	double nu,
	double x
)

Parameters

nu  Double
A real number that specifies the order of the Bessel function.
x  Double
A real number.

Return Value

Double
The modified Bessel function of the second kind of order nu evaluated at x.

BesselK(Int32, Double)

Evaluates the modified Bessel function of the second kind of integer order.
C#
public static double BesselK(
	int n,
	double x
)

Parameters

n  Int32
The order.
x  Double
A real number.

Return Value

Double
The modified Bessel function of the second kind of order n.

See Also