[SciPy-Dev] scipy.integrate's dopri5 methods doesn't pass additional arguments

James Hensman james.hensman at gmail.com
Wed Feb 23 10:07:56 EST 2011


in scipy/integrate/ode.py, line 745 in the dopri5 class. the following is
needed in order to pass additional arguments to the function to be
integrated:

<         x,y,iwork,idid = self.runner(*((f,t0,y0,t1) +
tuple(self.call_args)))
---
>         x,y,iwork,idid = self.runner(*((f,t0,y0,t1) +
tuple(self.call_args)+(f_params,)))

Please excuse any faux pas I may have made: this is my first post to such a
list.

James.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/scipy-dev/attachments/20110223/597cf2d7/attachment.html>


More information about the SciPy-Dev mailing list