Есть ли возможность включить более 1 аргумента в квадрупную интеграцию?
def function(x,a):
return a*x**2
scheme = quadpy.line_segment.gauss_legendre(10)
scheme.integrate(function, [0,1])
# function() missing 1 required positional argument
Аналогично интеграции scipy:
a=2
scheme.integrate(function, [0,1], args=(a))