没有错误消息:scipy odeint - spyder(" Kernel死了,重启")

时间:2017-12-12 15:49:59

标签: python-3.x scipy spyder odeint

我使用scipys odeint进行模拟。在我的代码更改后,我收到了错误消息" Kernel死了,重启"一次又一次。问题是odeint的时间间隔为零。我需要很多时间来确定问题。

我不确定这是否是odeint或Spyder问题,但应该有适当的错误消息。

这可能是我的包星座中的一个问题吗?

在命令提示符下运行一个具有相同问题的最小工作示例我什么都没得到。

from scipy.integrate import odeint
import numpy as np
t = np.linspace(0,0,10)
def func(x):
    return x**2
sol = odeint(func, [1.], t)
print(sol)

赢得10,64位,Python 3.6,SciPy 1.0.0

0 个答案:

没有答案