No BSD License
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