No BSD License  

Highlights from
Bezier curve

from Bezier curve by Nguyen Quoc Duan
Draw a Bezier curve passing through 6 given points

f=factorial(n)
% factorial function
% Copyright by Nguyen Quoc Duan - EMMC11

% Purpose : to compute the factorial of a natural number 

function f=factorial(n)
if n==0|n==1
   f=1;
else
   f=n*factorial(n-1);
end

Contact us at files@mathworks.com