在Python中模仿MATLAB的ode45函数

时间:2018-01-24 17:14:45

标签: python matlab scipy differential-equations ode45

我想知道如何将MATLAB函数ode45导出到python。根据文件应该如下:

 MATLAB:  [t,y]=ode45(@vdp1,[0 20],[2 0]);

 Python:  import numpy as np
          def  vdp1(t,y):
              dydt= np.array([y[1], (1-y[0]**2)*y[1]-y[0]])
              return dydt
          import scipy integrate 
          l=scipy.integrate.ode(vdp1([0,20],[2,0])).set_integrator("dopri5")

结果完全不同,Matlab返回的内容与Python不同。

3 个答案:

答案 0 :(得分:4)

正如@LutzL所提到的,你可以使用新的api。

results = solve_ivp(obj_func, t_span, y0, t_eval = time_series)

如果未指定t_eval,则每个时间戳不会有一条记录,这主要是我假设的情况。

另一方面注意,对于odeint和其他集成商,输出数组是ndarray形状[len(time), len(states)],但对于solve_ivp,输出为一个list(length of state vector)的1维ndarray(长度等于t_eval)。

如果你想要相同的订单,你必须合并它。你可以这样做:

Y =results
merged = np.hstack([i.reshape(-1,1) for i in Y.y])

首先,您需要重新整形以使其成为[n,1]数组,并将其水平合并。 希望这有帮助!

答案 1 :(得分:2)

integrate.ode的界面不像更简单的方法odeint那样直观,但是,它不支持选择ODE积分器。主要区别在于ode不会为您运行循环;如果你需要一堆点的解决方案,你必须说明在什么点,并一次计算一个点。

import numpy as np
from scipy import integrate
import matplotlib.pyplot as plt

def vdp1(t, y):
    return np.array([y[1], (1 - y[0]**2)*y[1] - y[0]])
t0, t1 = 0, 20                # start and end
t = np.linspace(t0, t1, 100)  # the points of evaluation of solution
y0 = [2, 0]                   # initial value
y = np.zeros((len(t), len(y0)))   # array for solution
y[0, :] = y0
r = integrate.ode(vdp1).set_integrator("dopri5")  # choice of method
r.set_initial_value(y0, t0)   # initial values
for i in range(1, t.size):
   y[i, :] = r.integrate(t[i]) # get one more value, add it to the array
   if not r.successful():
       raise RuntimeError("Could not integrate")
plt.plot(t, y)
plt.show()

solution

答案 2 :(得分:1)

函数scipy.integrate.solve_ivp默认使用RK45方法,类似于Matlab函数ODE45使用的方法,因为两者都使用具有四阶方法精度的 Dormand-Pierce 公式。

vdp1 = @(T,Y) [Y(2); (1 - Y(1)^2) * Y(2) - Y(1)];
[T,Y] = ode45 (vdp1, [0, 20], [2, 0]);
from scipy.integrate import solve_ivp

vdp1 = lambda T,Y: [Y[1], (1 - Y[0]**2) * Y[1] - Y[0]]
sol = solve_ivp (vdp1, [0, 20], [2, 0])

T = sol.t
Y = sol.y

Ordinary Differential Equations (solve_ivp)