dotnetCHARTING Send comments on this topic.
GammaP(SeriesCollection,Double) Method
See Also 
dotnetCHARTING Namespace > ForecastEngine.Advanced Class > GammaP Method : GammaP(SeriesCollection,Double) 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.
a
A double.
Calcuates the incomplete Gamma function P(a, x).

Syntax

Visual Basic (Declaration)  
Public Overloads Shared Function GammaP( _
   ByVal sc As SeriesCollection, _
   ByVal a As Double _
) As SeriesCollection
Visual Basic (Usage) Copy Code
Dim sc As SeriesCollection
Dim a As Double
Dim value As SeriesCollection
 
value = ForecastEngine.Advanced.GammaP(sc, a)
C#  
public static SeriesCollection GammaP( 
   SeriesCollection sc,
   double a
)

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.
a
A double.

See Also