How to solve this differential equation using scipy odeint?

前端 未结 2 2007
灰色年华
灰色年华 2021-01-25 02:44

I am trying to solve the following differential equation using scipy odeint without much success:

import numpy as np
from scipy.misc import derivative
from scipy         


        
2条回答
  •  一生所求
    2021-01-25 03:24

    what about using ode instead of odeint

    there is a question quite similiar to yours: How to make odeint successful?

提交回复
热议问题