Dundas Chart for Windows Forms
BetaFunction Method
See Also  Example Send comments on this topic.
DundasWinChart Assembly > Dundas.Charting.WinControl Namespace > Statistics Class : BetaFunction Method


m
The first value to find the beta function value for. Must be a positive, non-zero number.
First parameter for beta function
n
The second value to find the beta function value for. Must be a positive, non-zero number.
Second Parameter for beta function

Enterprise Edition Only Feature. This method returns the beta function for two given values.


Calculates Beta Function

Syntax

Visual Basic (Declaration)  
Public Function BetaFunction( _
   ByVal m As Double, _
   ByVal n As Double _
) As Double
Visual Basic (Usage) Copy Code
Dim instance As Statistics
Dim m As Double
Dim n As Double
Dim value As Double
 
value = instance.BetaFunction(m, n)
C#  
public double BetaFunction( 
   double m,
   double n
)

Parameters

m
The first value to find the beta function value for. Must be a positive, non-zero number.
First parameter for beta function
n
The second value to find the beta function value for. Must be a positive, non-zero number.
Second Parameter for beta function

Return Value

Returns beta function

Example

The following returns the beta function for the two given arguments.
Visual Basic Copy Code
Imports Dundas.Charting.WinControl
...

Dim result As Double = Chart1.DataManipulator.Statistics.BetaFunction(6,3)
C# Copy Code
using Dundas.Charting.WinControl;
...

double result = Chart1.DataManipulator.Statistics.BetaFunction(6,3);

Remarks

This method returns the beta function value for two given values that are specified by m and n.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2009 All Rights Reserved.