Backward integration in time using scipy odeint

前端 未结 3 819
攒了一身酷
攒了一身酷 2021-01-15 11:01

Is it possible to integrate any Ordinary Differential Equation backward in time using scipy.integrate.odeint ? If it is possible, could someone tell me what should be the ar

3条回答
  •  伪装坚强ぢ
    2021-01-15 11:38

    You can make a change of variables s = t_0 - t, and integrate the differential equation with respect to s. odeint doesn't do this for you.

提交回复
热议问题