No BSD License  

Highlights from
Introduction à Matlab (deuxième édition)

from Introduction à Matlab (deuxième édition) by Jean-Thierry
tous les m-fichiers relatifs à la deuxième édition de l'Introduction à Matlab

euler(f, x, y, h)
 function yh = euler(f, x, y, h)
 
 k1 = h*feval(f, x, y);
 yh = y + k1;


Contact us at files@mathworks.com