StatisticFormula.GammaFunction(Double) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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 值的值。
返回
Gamma 值。
示例
下面的代码演示如何使用此公式。
Dim result As Double = Chart1.DataManipulator.Statistics.GammaFunction(6.2)
double result = Chart1.DataManipulator.Statistics.GammaFunction(6.2);