Special.BesselK1 Method

Definition

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

Overload List

BesselK1(Complex<Double>) Evaluates the modified Bessel function of the second kind of order 1 for complex argument.
BesselK1(Double) Evaluates the modified Bessel function of the second kind of order 1.

BesselK1(Complex<Double>)

Evaluates the modified Bessel function of the second kind of order 1 for complex argument.
C#
public static Complex<double> BesselK1(
	Complex<double> z
)

Parameters

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

Return Value

Complex<Double>
The modified Bessel function of the second kind of order 0.

BesselK1(Double)

Evaluates the modified Bessel function of the second kind of order 1.
C#
public static double BesselK1(
	double x
)

Parameters

x  Double
The value at which to evaluate the function.

Return Value

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

See Also