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

triang(n)
          function c =  triang(n)

          c = zeros(n, n); 
          c(:, 1) = 1; 
          for i = 2:n 
            for j = 2:i 
              c(i, j) = c(i-1, j-1)+c(i-1, j); 
            end; 
          end;

Contact us at files@mathworks.com