借助于sympy.gamma()方法,我们可以在SymPy中找到gamma函数。 γ(z)表示对于正整数z与。
用法: gamma(Z)
参数:
Z –它是伽玛函数的输入值。
返回值:返回输入值的伽马函数结果。
示例1:
# import sympy
from sympy import *
Z = 5
print("Z = {}".format(Z))
# Use sympy.gamma() method
gamma_Z = gamma(Z)
print("gamma(Z) : {}".format(gamma_Z))
输出:
Z = 5 gamma(Z) : 24
示例2:
# import sympy
from sympy import *
X = symbols('x')
print("X = {}".format(X))
# Use sympy.gamma() method
gamma_X = gamma(X)
print("gamma(X) : {}".format(gamma_X))
输出:
X = x gamma(X) : gamma(x)
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.fchmod()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python PIL putpixel()用法及代码示例
- Python os.sysconf()用法及代码示例
- Python os.confstr()用法及代码示例
- Python os._exit()用法及代码示例
- Python cmath.log()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.rf()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.gamma() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。