我昨天刚开始使用 Python,使用scipy.integrate.odeint
.
我定义了一个函数
def SIR(x, t, beta, gamma, mu, M):
它接受numpy.array
对象x
,t
和M
; 和标量浮动beta
, gamma
, 和mu
.
M
是(60,60)
大小,但我认为这并不重要。
x
并且t
都是非单例的,有x.shape
存在(180,)
和t.shape
存在(5000,)
。我试过给他们一个单一的维度,让他们分别有形状(180,1)
和(5000,1)
,但我仍然得到同样的错误:
In [1]: run measles_age.py
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/IPython/utils/py3compat.py in execfile(fname, *where)
173 else:
174 filename = fname
--> 175 __builtin__.execfile(filename, *where)
/Users/qcaudron/Documents/SIR/measles_age.py in <module>()
111
112
--> 113 x = integrate.odeint(SIR, x0, t, args=(beta, gamma, mu, M));
114
115 # plot(t, x);
/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/scipy/integrate/odepack.py in odeint(func, y0, t, args, Dfun, col_deriv, full_output, ml, mu, rtol, atol, tcrit, h0, hmax, hmin, ixpr, mxstep, mxhnil, mxordn, mxords, printmessg)
141 output = _odepack.odeint(func, y0, t, args, Dfun, col_deriv, ml, mu,
142 full_output, rtol, atol, tcrit, h0, hmax, hmin,
--> 143 ixpr, mxstep, mxhnil, mxordn, mxords)
144 if output[-1] < 0:
145 print _msgs[output[-1]]
即使SIR
刚刚返回x
,我也会收到此错误,并且如果我将所有参数从中剥离x
出来t
:
def SIR(x, t):
return x;
如您所见,导致错误的行是
x = integrate.odeint(SIR, x0, t, args=(beta, gamma, mu, M));
编辑 :
我被要求添加该SIR
方法的完整代码。因为它相对较长,所以我将完整的 .py 脚本放在了一个 pastebin 中:http:
//pastebin.com/RphJbCHN
再次感谢。