dotnetCHARTING Send comments on this topic.
Beta(String,Series,Series) Method
See Also 
dotnetCHARTING Namespace > ForecastEngine.Advanced Class > Beta Method : Beta(String,Series,Series) Method


elementName
The name of the element which will be displayed on the chart, i.e. its label.
s
A statistical series.
z
A series.
Calcuates the Beta function: B(z,w) = B(w,z) = ∫01 tz-1(1-t)w-1dt;.

Syntax

Visual Basic (Declaration)  
Public Overloads Shared Function Beta( _
   ByVal elementName As String, _
   ByVal s As Series, _
   ByVal z As Series _
) As Series
Visual Basic (Usage) Copy Code
Dim elementName As String
Dim s As Series
Dim z As Series
Dim value As Series
 
value = ForecastEngine.Advanced.Beta(elementName, s, z)
C#  
public static Series Beta( 
   string elementName,
   Series s,
   Series z
)

Parameters

elementName
The name of the element which will be displayed on the chart, i.e. its label.
s
A statistical series.
z
A series.

Exceptions

Exception Description
!MISSING Scrap '__TITLE'! Thrown if the series s is empty.

See Also