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

expo( x )
   function s = expo( x )

    t = 1.0; n = 1.0; s = 0.0;
    while 1
      if ( abs(t) <=  1.0e-14 )
        break;
      end; 	
      s = s + t;
      t = t * (x/n);
      n = n + 1.0;
    end

Contact us at files@mathworks.com