I\'m using Matlab to solve a differential equation. I want to force ode45 to take constant steps, so it always increments 0.01 on the T axis while solving the equation. How
ode45 invariably uses adaptive step size, the documentation addresses this issue and recommends other solvers instead for fixed step size - see ode4 (fourth order Runge-Kutta) which is a fairly safe bet for solving most odes - at least according to Numerical Recipes