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

equ3(a, b, c, d)
            function x  = equ3(a, b, c, d)

            if a == 0
              x = equ2(b,c,d);
            else            
              x = newton(a,b,c,d);
              beta =  b + a*x;
              gamma = c + beta*x;
              x = [x equ2(a, beta, gamma)]; 
            end;

Contact us at files@mathworks.com