ENCLOSINGCIRCLE Find the minimum circle enclosing a set of points.

   CIRCLE = enclosingCircle(POINTS);
   computes the circle CIRCLE=[xc yc r] which encloses all the points POINTS
   given as a N-by-2 array.


   Rewritten from a file from
           Yazan Ahed (yash78@gmail.com)

   which was rewritten from a Java applet by Shripad Thite:
   http://heyoka.cs.uiuc.edu/~thite/mincircle/

   See also:
   circles2d, points2d, boxes2d, circumCircle

Package: matgeom