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

swap(a, l1, l2)
function a = swap(a, l1, l2)
%swap     change des lignes l1 et l2 de a;
%         swap(a, l1, l2)
  la1 = a(l1,:);
  a(l1,:) = a(l2,:);
  a(l2,:) = la1;
  

Contact us at files@mathworks.com