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

rech3(t, x)
           function i = rech3(t, x)
           
           i  = length(t);
           while 1
             if i == 0
               break;
             end;
             if t(i)== x
               break;
             end;
             i = i-1;
           end; 

Contact us at files@mathworks.com