StatisticFormula.GammaFunction(Double) 方法

定义

Gamma 函数计算 Gamma 值。

public:
 double GammaFunction(double value);
public double GammaFunction (double value);
member this.GammaFunction : double -> double
Public Function GammaFunction (value As Double) As Double

参数

value
Double

需要计算 Gamma 值的值。

返回

Double

Gamma 值。

示例

下面的代码演示如何使用此公式。

Dim result As Double = Chart1.DataManipulator.Statistics.GammaFunction(6.2)  
double result = Chart1.DataManipulator.Statistics.GammaFunction(6.2);  

适用于