In the last test, the first point is not in, but on the circle!!!
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
circle = [0, 0, 1]; Points = [0, 0.5]
y_correct = 1;
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 0.5000
|
2 | Pass |
circle = [0, 0, 1]; Points = [0, 2]
y_correct = 0;
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 2
|
3 | Pass |
circle = [1, 1, 1]; Points = [0, 1; 0, 0]
y_correct = [1; 0];
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 1
0 0
|
4106 Solvers
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
3065 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
412 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!