在 SymPy 中,如果我通过以下方式整合一般高斯:
x = Symbol("x", real=True)
y = Symbol("y", real=True)
s = Symbol("s", real=True)
gaussian = exp(-((x-y)**2)/(2*(s**2)))
nfactor = simplify(integrate(gaussian, (x,-oo,oo)))
我nfactor
越来越Piecewise
依赖periodic_argument
and polar_lift
。与以下对象相同的对象:
Abs(periodic_argument(polar_lift(s)**(-2), oo))
必须小于pi/2
我想要的解决方案。有没有一种很好的方法来只满足这种条件 - 在 Mathematica 中,人们可能会使用Assuming
and Refine
or Simplify
,但我是 sympy 的新手,我不知道该怎么做。