I'm trying to solve an ODE of the form
x'=f(x), x(T)=x_{T}
in python using scipy.integrate.odeint.
However, this has the form: scipy.integrate.odeint(func, y0, t,...), where y0 is the vector of initial conditions. I do not have an initial vector, instead, I have a vector for the final time T. How should I modify the scipy.integrate.odeint routine?
Thanks in advance