%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % eulerstep.m % Euler step function %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function y = eulerstep(t,x,h) %one step of the Euler method y = x+h*ydot(t,x);