Problem 554. Is the Point in a Circle?
Check whether a point or multiple points is/are in a circle centered at point (x0, y0) with radius r.
Points = [x, y]; circle = (x0, y0, r)
Return true or false for each point tested
Solution Stats
Problem Comments
-
8 Comments
error in the test:
assert(isequal(your_fcn_name(x),y_correct))
Error: Undefined function or variable 'x'.
Should be:
assert(isequal(your_fcn_name(Points,circle),y_correct))
I went ahead and fixed the calling syntax on that.
Thanks for the corrections!
You should correct the first test!
The first test case is wrong.
The first test case is wrong, is FALSE
Is the Point on a Disk?
Is the Point inside a Circle?
The first test is still wrong! It has not been corrected.
Solution Comments
Show commentsProblem Recent Solvers623
Suggested Problems
-
Matrix indexing with two vectors of indices
766 Solvers
-
Find nearest prime number less than input number
1011 Solvers
-
Relative ratio of "1" in binary number
1566 Solvers
-
Solving Quadratic Equations (Version 1)
503 Solvers
-
Given a square and a circle, please decide whether the square covers more area.
1645 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!