StatisticFormula.BetaFunction(Double, Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.