TypeError:fun()缺少1个必需的位置参数:'a'

问题描述 投票:0回答:1

我知道有很多关于此错误的话题,我已经尝试过许多尝试了解简单系统的情况。这是我的代码,求解一个非常简单的方程式以测试Solve_ivp与odeint的效率。

import numpy as np 
import numpy as np 
import matplotlib.pyplot as plt
from scipy.integrate import solve_ivp


def fun(t,x,a) : 
    return -x/a


t = np.linspace(0,10,1000)
tspan = [t[0], t[-1]]


x0 = [10]

sol = solve_ivp(fun, tspan, x0, t_eval = t, args = 1)

plt.plot(t,sol.y.T)
plt.show()

这是完整的错误报告:

/home/anthony/.local/lib/python3.8/site-packages/scipy/integrate/_ivp/common.py:40:         
/home/anthony/.local/lib/python3.8/site-packages/scipy/integrate/_ivp/common.py:40:     
UserWarning: The following arguments have no effect for a chosen solver: `args`.
warn("The following arguments have no effect for a chosen solver: {}."
Traceback (most recent call last):
File "test.py", line 25, in <module>
sol = solve_ivp(fun, tspan, x0, t_eval = t, args = 1)
File "/home/anthony/.local/lib/python3.8/site-packages/scipy/integrate/_ivp/ivp.py", line 
477, in solve_ivp
solver = method(fun, t0, y0, tf, vectorized=vectorized, **options)
File "/home/anthony/.local/lib/python3.8/site-packages/scipy/integrate/_ivp/rk.py", line 
100, in __init__
self.f = self.fun(self.t, self.y)
File "/home/anthony/.local/lib/python3.8/site-packages/scipy/integrate/_ivp/base.py", line 
139, in fun
return self.fun_single(t, y)
File "/home/anthony/.local/lib/python3.8/site-packages/scipy/integrate/_ivp/base.py", line 
21, in fun_wrapped
return np.asarray(fun(t, y), dtype=dtype)
TypeError: fun() missing 1 required positional argument: 'a'

对我来说,错误很明显,但是很明显,我根据该求解器的文档doc scipy.integrate.solve_ivp将参数放在正确的位置我还升级到了最新的scipy版本,任何建议都非常有用。

python numpy scipy solver
1个回答
0
投票

args应该是一个元组

In [281]: sol = solve_ivp(fun, tspan, x0, t_eval = t, args = (1,))                                     
In [282]: sol                                                                                          
Out[282]: 
  message: 'The solver successfully reached the end of the integration interval.'
     nfev: 80
     njev: 0
      nlu: 0
      sol: None
   status: 0
  success: True
   ....

弥补args是最常见的scipy.integrate(和optimize)SO错误之一。

© www.soinside.com 2019 - 2024. All rights reserved.