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
ans =
logical
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
ans =
logical
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
ans =
2×1 logical array
1
0
|
2400 Solvers
1263 Solvers
594 Solvers
First non-zero element in each column
593 Solvers
Matrix with different incremental runs
249 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!