Code covered by the BSD License  

Highlights from
GUI tool for ODE solving

image thumbnail
from GUI tool for ODE solving by Max Logunov
GUI provides friendly interface for solving (noisy) ODE systems.

Y=tmp_sys(t,X);
function Y=tmp_sys(t,X); 
Y=zeros(4,1); 
x1=X(1); 
x2=X(2); 
x3=X(3); 
x4=X(4); 
Y(1)=-x2-x3; 
Y(2)=x1+0.25*x2+x4; 
Y(3)=3+x3*x1; 
Y(4)=-0.5*x3+0.05*x4; 

Contact us at files@mathworks.com