StatisticFormula.BetaFunction Method (Double, Double)

.NET Framework (current version)
 

The beta function calculates the beta function value.

Namespace:   System.Web.UI.DataVisualization.Charting
Assembly:  System.Web.DataVisualization (in System.Web.DataVisualization.dll)

public double BetaFunction(
	double m,
	double n
)

Parameters

m
Type: System.Double

First value for the beta function.

n
Type: System.Double

Second value for the beta function.

Return Value

Type: System.Double

Beta value.

The following code demonstrates how to use this formula.

double result = Chart1.DataManipulator.Statistics.BetaFunction(2.3, 6.2);

.NET Framework
Available since 4.0
Return to top
Show: