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

s1=invphr(s)
function s1=invphr(s)

s = [' ' s ' '];
ind = findstr(' ', s);
s1 = [];
for i = length(ind)-1:-1:1
  s1 = [s1 [s(ind(i)+1:ind(i+1))]];
end;
s1 = s1(1:length(s1)-1);

Contact us at files@mathworks.com