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

rechlin3(a, x)
function i =  rechlin3(a, x)
% RECHLIN3 recherche         
%linaire par find           
% on les recherche tous      
% et on garde le premier.

a = a(:);                    
i = find(x==a);              
if i ~= [];                  
  i = i(1);                  
end;                         

Contact us at files@mathworks.com