gpt4 book ai didi

python - 将参数传递给 mpmath 四元积分

转载 作者:行者123 更新时间:2023-12-01 06:10:18 25 4
gpt4 key购买 nike

我正在集成一些非常讨厌的函数,而 scipy.integrate.quad 不能很好地处理这种情况。我计划将 mpmath.quad 与 tanh-sinh 方法一起使用,但我需要将一些参数传递给正在计算的函数,如下所示:

mpmath.quad(f,[0,mpmath.pi],method='tanh-sinh',args=(arg_1, arg_2))

f 定义为

f(x,arg_1, arg_2)

在文档中没有找到类似的内容。有什么建议吗?

谢谢!

最佳答案

使用 lambda:

import mpmath
arg_1 = 1
arg_2 = 9

print mpmath.quad(lambda x: f(x, arg_1, arg_2), ...)

关于python - 将参数传递给 mpmath 四元积分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6256249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com