dotnetCHARTING Send comments on this topic.
BesselK(SeriesCollection,Int32) Method
See Also 
dotnetCHARTING Namespace > ForecastEngine.Advanced Class > BesselK Method : BesselK(SeriesCollection,Int32) Method


sc
A collection of series objects. For example, to evaluate this indicator for two series you will need to pass a series collection containing this two series.
n
The grade of the function.
Calcuates the modified Bessel function Kx(x) for any real x and n ≥ 2.

Syntax

Visual Basic (Declaration)  
Public Overloads Shared Function BesselK( _
   ByVal sc As SeriesCollection, _
   ByVal n As Integer _
) As SeriesCollection
Visual Basic (Usage) Copy Code
Dim sc As SeriesCollection
Dim n As Integer
Dim value As SeriesCollection
 
value = ForecastEngine.Advanced.BesselK(sc, n)
C#  
public static SeriesCollection BesselK( 
   SeriesCollection sc,
   int n
)

Parameters

sc
A collection of series objects. For example, to evaluate this indicator for two series you will need to pass a series collection containing this two series.
n
The grade of the function.

Remarks

Kn(x) ≅ (1/√2πx)exp(-x)

See Also