Dundas Chart for ASP.NET
Gamma Function
See Also Send comments on this topic.
Formula Reference > Statistical Formulas > Gamma Function



Glossary Item Box

Overview

Enterprise Edition Only Feature.

The gamma function is calculated for the given value.

Applying the Formula

All statistical formulas are calculated using the Statistics class, and the following table describes how to use its GammaFunction method.

 

  Value/Description Example
Formula Name: Gamma Function Statistics.GammaFunction(6.2)
Parameters:

n: a value for which the gamma value is required.

Statistics.GammaFunction(6.2)
Return: A double that represents the gamma function value.

-

 

Example

The following returns the gamma function value for the given argument.

Visual Basic Copy Code
Imports Dundas.Charting.WebControl
  ...
  
Dim result As Double = Chart1.DataManipulator.Statistics.GammaFunction(6.2)


                    
C# Copy Code
using Dundas.Charting.WebControl;
  ...
  
double result = Chart1.DataManipulator.Statistics.GammaFunction(6.2);


                    

See Also

Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.