Dundas Chart for ASP.NET
Beta Function
Send comments on this topic.

Glossary Item Box

OverviewEnterprise Edition Only Feature.

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:
  1. m: The first argument.
  2. n: The first argument.
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.

[C#]
using Dundas.Charting.WebControl;
...
double result = Chart1.DataManipulator.Statistics.BetaFunction(6,3);
Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.