Matlab pour la syntaxe de boucle

for v = [1 5 8 17]
   disp(v)
end

%  Output:
%	1
%	5
%	8
%	17
Tiny Coders