借助sympy.gammasimp()方法,我们可以使用带有非整数参数的伽马函数或组合函数简化表达式
用法: gammasimp(expression)
参数:
expression –这是需要简化的数学表达式。
返回值:返回对应于输入的简化数学表达式。
示例1:
# import sympy
from sympy import * x = symbols('x')
expr = gamma(x)*gamma(1 - x)
print("Expression = {}".format(expr))
# Use sympy.gammasimp() method
simple_expr = gammasimp(expr)
print("Simplified Expression : {}".format(simple_expr))
输出:
Expression = gamma(x)*gamma(1 - x) Simplified Expression : pi/sin(pi*x)
示例2:
# import sympy
from sympy import * x = symbols('x')
expr = gamma(x + 1)/gamma(x - 1)
print("Expression = {}".format(expr))
# Use sympy.gammasimp() method
simple_expr = gammasimp(expr)
print("Simplified Expression : {}".format(simple_expr))
输出:
Expression = gamma(x + 1)/gamma(x - 1) Simplified Expression : x*(x - 1)
相关用法
- 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.gammasimp() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。