gpt4 book ai didi

python - 如何找到 scipy.integrate.ode 的默认 atol 和 rtol?

转载 作者:行者123 更新时间:2023-11-28 21:06:03 26 4
gpt4 key购买 nike

如何在 scipy.integrate.ode 中找到默认参数?具体来说,atolrtol in integrator dopri5?可以使用 set_integrator 方法设置参数,但如果我不设置参数,我看不到任何查询它的方法以了解它一直在使用什么。

最佳答案

据我所知,找出答案的唯一方法是调查 the source .在那里,从第 966 行开始(截至目前),您会发现:

class dopri5(IntegratorBase):

[…]

def __init__(self,
rtol=1e-6, atol=1e-12,
nsteps=500,
max_step=0.0,
[…]
):

因此,dopri 的默认绝对容差为 10⁻¹²,其默认相对容差为 10⁻⁶。 (是的,这应该记录在案。)

关于python - 如何找到 scipy.integrate.ode 的默认 atol 和 rtol?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43246279/

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