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

factr(n)
function m = factr(n)
%      factorielle rcursive
if n == 0;
   m = 1;
else
   m = n.*factr(n-1);
end;


Contact us at files@mathworks.com