Python math.gamma() 方法
实例
求不同数的伽马函数:
# Import math Library
import math
# 返回不同数字的 gamma 函数
print(math.gamma(-0.1))
print(math.gamma(8))
print(math.gamma(1.2))
print(math.gamma(80))
print(math.gamma(-0.55))
亲自试一试 »
定义和用法
math.gamma()
方法返回一个数字处的 gamma 函数。
提示:要查找数字的对数伽玛值,请使用 math.lgamma()
方法。
语法
math.gamma(x)
参数值
参数 | 描述 |
---|---|
x | 必需。用于查找 gamma 函数的数字。 如果数字是负整数,则返回 ValueError。 如果不是数字,则返回 TypeError。 |
技术细节
返回值: | 一个 float 值,表示 x | 处的 gamma 函数
---|---|
Python 版本: | 3.2 |