Dundas Chart for SharePoint Send comments on this topic.
Gamma Function
See Also

Glossary Item Box

Overview

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
Dim result As Double = chartObj.DataManipulator.Statistics.GammaFunction(6.2)
C# Copy Code
double result = chartObj.DataManipulator.Statistics.GammaFunction(6.2);

See Also