This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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
d =
0.5000
y =
1
|
2 | Pass |
circle = [0, 0, 1]; Points = [0, 2]
y_correct = 0;
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 2
d =
2
y =
0
|
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
d =
1
d =
1.4142
y =
1
0
|
Project Euler: Problem 6, Natural numbers, squares and sums.
784 Solvers
Convert a numerical matrix into a cell array of strings
152 Solvers
535 Solvers
Create an index-powered vector
233 Solvers
Area of an equilateral triangle
1706 Solvers