标签: python scipy ode scientific-computing
我使用scipy的{{3}}来解决微分方程。有时集成需要太长时间,我想中止它,但返回到目前为止获得的部分结果。
scipy
如果我提前设置了时间限制,我可以破解events参数来检查是否已经过了太多时间然后停止集成,但这很黑,而且我更喜欢让它“互动”, probaby使用KeyboardInterrupt或类似的东西。
events
KeyboardInterrupt
有什么想法吗?