Closed karadaharu closed 1 year ago
Hi! Thank you for this module. I learned a good way to implement a DDE solver. I had an error with this module same as others and fixed it. The error was due to the change of interp1d class in scipy. It now uses self._y instead of self.y for multiple dimensional output; https://github.com/scipy/scipy/blob/v0.17.0/scipy/interpolate/interpolate.py#L547-L548 Please check and merge my PR. Thanks! Kaz
interp1d
self._y
self.y
I'm using scipy 1.4.1 and ddeint 0.2 with multivariate problems and it works fine.
So can I close this, @yoavram is there anything required from me?
Not that I know of
Hi! Thank you for this module. I learned a good way to implement a DDE solver. I had an error with this module same as others and fixed it. The error was due to the change of
interp1d
class in scipy. It now usesself._y
instead ofself.y
for multiple dimensional output; https://github.com/scipy/scipy/blob/v0.17.0/scipy/interpolate/interpolate.py#L547-L548 Please check and merge my PR. Thanks! Kaz