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

testmed.m
% script testmed
delete(gcf)
[x,y] = gendata;
[sol, chi2]=mlsq(x,y)
plot(x,y,'r+');
hold on
a = tan(sol(1));
b = -sol(2)/cos(sol(1));
plot(x, a*x+b)

Contact us at files@mathworks.com