Problem 1651. Circumcircle Points
Determine the radius of the minimum sized circle that encompasses all the points.
Per Smallest Sphere Paper this question was first addressed by Sylvester in 1857, Megiddo in 1982, and optimized by Emo Welzl in 1991.
Input: Points (eg [0 0;0 1;2 0]) Minimum of 3 points
Output: r (radius of optimally centered circle)
Example: [0 0;0 1;2 0] yields [xc,yc,r] [1 .5 1.118] Output r=1.118
Theory: Best Circumcircle may occur in two ways:
1) Center of Line connecting pair with maximum separation, or
2) A circle utilizing three points from the set
Related Challenges:
Warning: Rounding Errors may cause solution errors. Usage of 10*eps(r) may be appropriate.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers5
Suggested Problems
-
3367 Solvers
-
Remove the small words from a list of words.
1543 Solvers
-
Numbers with prime factors 2, 3 and 5.
582 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
427 Solvers
-
Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
238 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!