ILNumerics Ultimate VS

ILMathbesselModifiedK1 Method (InArrayDouble)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Evaluates the modified Bessel function of the second kind, integer order 1 of the argument. For more details about this function, see Wikipedia - Bessel functions of the second kind.

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<double> besselModifiedK1(
	InArray<double> x
)

Parameters

x
Type: ILNumericsInArrayDouble
The point where the function will be evaluated.

Return Value

Type: RetArrayDouble
The value of the function.
Remarks

  • If the input x is null, ArgumentNullException will be thrown.
  • If the input x is empty, an empty array will be returned.
  • If any element of x is xi < 0, double.NaN will be returned at that element.
  • If any element of x is xi == double.PositiveInfinity, 0 will be returned.
  • If any element of x is == 0.0, double.PositiveInfinity will be returned.

[ILNumerics Computing Engine]

See Also

Reference