Hi,
I would like to know about the criterion to stop iteration from "Events" of odeset (ode45) function.
options=odeset('Events',@ft2gnd);
[T,Y,te,ye,Ie] = ode45(@biped1,tspan,y0,options);
Because of from Matlab help, we have:
[T,Y,TE,YE,IE] = ode45(odefun,tspan,y0,options)
Could anybody...