Special.KelvinBe Method

Definition

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

Overload List

KelvinBe(Double) Evaluates the real and imaginary parts of the Kelvin function of the first kind of order 0.
KelvinBe(Double, Double) Evaluates the real and imaginary parts of the Kelvin function of the first kind.

KelvinBe(Double)

Evaluates the real and imaginary parts of the Kelvin function of the first kind of order 0.
C#
public static Complex<double> KelvinBe(
	double x
)

Parameters

x  Double
The value at which to evaluate the function.

Return Value

Complex<Double>
The value of the Kelvin function of the first kind of order 0 at x.

KelvinBe(Double, Double)

Evaluates the real and imaginary parts of the Kelvin function of the first kind.
C#
public static Complex<double> KelvinBe(
	double nu,
	double x
)

Parameters

nu  Double
A real number that specifies the order of the Kelvin function.
x  Double
The value at which to evaluate the function.

Return Value

Complex<Double>
The value of the Kelvin function of the first kind of order nu at x.

See Also