This Challenge is to determine the center and radius of a circle given three non-colinear points.
Input: Points
Output: [xc, yc, r] where [xc,yc] are the center and r is the radius
Example:
Input: Points = [1 0 ; 0 -1 ; 0 1]
Output: [ 0 0 1]
Theory/Hint: The Kasa method provides a best fit circle to a set of points.
Future: 1) Circumscribe 4 points 2) Circumscribe N points 3) The Great Lego Cup Challenge
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers64
Suggested Problems
-
Renaming a field in a structure array
1581 Solvers
-
Project Euler: Problem 4, Palindromic numbers
1286 Solvers
-
Set some matrix elements to zero
632 Solvers
-
Create an index-powered vector
952 Solvers
-
Write a function man that takes a row vector v and returns a matrix H as follows..
648 Solvers
More from this Author306
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Nice one :)