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

trcercle(centre, rayon, style)
function trcercle(centre, rayon, style)

theta = linspace(0,2*pi, 300);
x = centre(1)+rayon*cos(theta);
y = centre(2)+rayon*sin(theta);
plot(x,y,style);
axis([centre(1)-2*rayon centre(1)+2*rayon centre(2)-2*rayon centre(2)+2*rayon]);
set(gca, 'PlotBoxAspect', [1 1 1]);


Contact us at files@mathworks.com