Odeint is a modern C++ library for numerically solving Ordinary Differential Equations.
I want to solve this differential equations with the given initial conditions: (3x-1)y''-(3x+2)y'+(6x-8)y=0, y(0)=2, y'(0)=3 …
python numpy scipy differential-equations odeintI have two numpy arrays: 9x9 and 9x1. I'd like to solve the differential equation at discrete time points, but …
python numpy scipy wolfram-mathematica odeint