Special.Bessel K Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Bessel | Evaluates the modified Bessel function of the second kind of real order and complex argument. |
Bessel | Evaluates the modified Bessel function of the second kind. |
Bessel | Evaluates the modified Bessel function of the second kind of integer order. |
BesselK(Double, Complex<Double>)
Evaluates the modified Bessel function of the second kind of real order and complex
argument.
public static Complex<double> BesselK(
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 value of the Bessel function of the second kind of order nu at z.
BesselK(Double, Double)
Evaluates the modified Bessel function of the second kind.
public static double BesselK(
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
DoubleThe 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.
public static double BesselK(
int n,
double x
)
Parameters
Return Value
DoubleThe modified Bessel function of the second kind of order n.