The beta function is calculated for two given values.
Applying the Formula
All statistical formulas are calculated using the Statistics class, and the following table describes how to use its BetaFunction method.
Value/Description | Example | |
---|---|---|
Formula Name: | BetaFunction | Statistics.BetaFunction(6,3) |
Parameters: |
|
Statistics.BetaFunction(6,3) |
Return: | A double that represents the beta function value. |
- |
Example
The following returns the beta function value for the two given arguments.
Visual Basic | Copy Code |
---|---|
|
using Dundas.Charting.WebControl;
...
double result = Chart1.DataManipulator.Statistics.BetaFunction(6,3);