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

linearspace(a, b, n)
           function v = linearspace(a, b, n)
           
           if n < 2
             error('n doit tre entier > 1');
           end;
           h = (b-a)/(n-1); 
           v = a:h:b

Contact us at files@mathworks.com