StatisticFormula.BetaFunction(Double, Double) Method

Definition

The beta function calculates the beta function value.

public:
 double BetaFunction(double m, double n);
public double BetaFunction (double m, double n);
member this.BetaFunction : double * double -> double
Public Function BetaFunction (m As Double, n As Double) As Double

Parameters

m
Double

First value for the beta function.

n
Double

Second value for the beta function.

Returns

Beta value.

Examples

The following code demonstrates how to use this formula.

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

Applies to