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

rechrec(t, x)
           function i = rechrec(t, x)
           
           if isempty(t)     % t est-il vide ?
             i = 0; 
           elseif t(end)==x 
             i = length(t): 
           else 
             i = rechrec(t(1:end-1),x); 
           end;

Contact us at files@mathworks.com