Top "Odeint" questions

Odeint is a modern C++ library for numerically solving Ordinary Differential Equations.

How to solve differential equation using Python builtin function odeint?

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 odeint
Pass args for solve_ivp (new SciPy ODE API)

For solving simple ODEs using SciPy, I used to use the odeint function, with form: scipy.integrate.odeint(func, y0, …

python numpy scipy ode odeint
Solving Matrix Differential Equation in Python using Scipy/Numpy- NDSolve equivalent?

I 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
Object Too Deep for Desired Array - scipy.integrate.odeint

I've just started with Python yesterday, and I'm getting an error using scipy.integrate.odeint. I've defined a function def …

python numpy scipy odeint